export interface ITimeout { id: number; callback: string; interval: number; createdAt: Date; } export declare class IntervalHelper { private static _timeouts; static create(callback: Function, ms: number): ITimeout; static clear(id: number): boolean; static clearAll(): void; }