import { Component } from '../component'; import { Entity } from '../entity'; export declare class DebugEntity extends Component { static _debugEnableChecks: boolean; static _debugShowBoxes: boolean; static _debugShowVelocities: boolean; static _debugShowNames: boolean; static colors: { names: string; velocities: string; boxes: string; }; private triggerDraw; private font; constructor(entity: Entity); update(delta: number): void; destroy(): void; draw(topic: string, entity: Entity): void; _debugDrawLine(color: string, sx: number, sy: number, dx: number, dy: number): void; }