declare type DebounceFunction = () => void; export declare function debounce(func: DebounceFunction, timeout?: number): () => void; export {};