export declare class Timer { protected timeoutTimers: any[]; setTimeout(cb: () => void, timeout: number): any; /** * Clears all timers at once. */ clear(): void; }