export declare function debounce(func: any, delay: any): (...args: any[]) => void; export declare function throttle(func: any, limit: any): (...args: any[]) => void;