import { Steppable } from '../loopables'; /** * (To be filled) */ export declare class FrameCounter implements Steppable { /** * Frame count. */ count: number; constructor(); /** * Resets the counter. * @param count */ resetCount(count?: number): FrameCounter; /** * Increments the frame count. */ step(): void; /** * Returns the mod. * @param divisor */ mod(divisor: number): number; }