export declare function debounce(fn: Function, delay: number): () => void; export declare function throttle(fn: Function, delay: number): () => void;