type AnyFunction = (...args: any[]) => any; export declare function debounce(func: T, delay: number): (...args: Parameters) => void; export {};