export declare class Delayer { private timeoutHandle; /** * It delays execution of a callback only once, if previous timeouts did not timed out * @param timeout Time in miliseconds * @param callback Callback function */ delayOnce(timeoutMs: number, timeoutCallback: () => void): void; }