export declare class CoolDownTime { IsCoolDownTime: boolean; ExecFunc: Function; TimerId: any; constructor(); CoolDown(time: number): void; Debounce(f: Function, time: number): void; Clear(): void; Exec(f: Function): void; } //# sourceMappingURL=CoolDownTime.d.ts.map