type DebounceFunction = (func: (...args: T) => void, delay: number) => (...args: T) => void; export declare const debounce: DebounceFunction; export {};