import { Point } from './Point'; export declare class Entity { protected _id: number; get id(): number; protected _world_pos: Point; get worldPos(): Point; set worldPos(value: Point); protected _cell: Point; get cellPos(): Point; set cellPos(value: Point); initPos(pos: Point): void; }