export declare class TimeoutTimer { private timeoutTimerId; private timerPromise; constructor(timeout: number); get promise(): Promise; clear(): void; static start(timeout: number): TimeoutTimer; }