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