export declare class RenderLoop { private readonly callback; private readonly fps; private msLastFrame; private isActive; private readonly msFpsLimit; private readonly run; private currentFps; constructor(callback: (delta: number) => void, fps?: number); start(): this; stop(): void; } //# sourceMappingURL=render-loop.d.ts.map