import { Component } from "./component";
export declare class Entity {
id: number;
components: Array<Component<any>>;
constructor();
}