type StepFunc = (ts: number) => void;
export declare class Timer {
    private refreshInterval;
    private lastRefreshAt;
    private updateLoop;
    stepFunc: StepFunc;
    constructor(refreshInterval: number, stepFunc: StepFunc);
    stop(): void;
    start(): void;
    protected kickOffUpdate(): void;
}
export {};
