export declare function throttledTimeout(): {
    call(delay: number, f: () => void): void;
    /**
     * If there is a call that has been scheduled, remove it from the queue.
     */
    abort(): void;
};
export declare function spacedTimeout(): {
    call(delay: number, f: () => void): void;
};
