declare type ThrottleFunc = () => any; export declare function throttle(func: ThrottleFunc, threshold?: number, scope?: any): (t: any) => void; export {};