export declare class StoppableTimeout { private stopped; private timer?; private reject?; wait(delay: number): Promise; stop(): void; }