export declare function debounce<T extends (...args: any[]) => void>(func: T, delay: number): (...args: any[]) => void;
