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