/**
 * Throttle a function to run at most once every `wait` milliseconds.
 */
export declare function throttle(fn: () => void, wait: number): () => void;
