/** * https://github.com/bameyrick/throttle-typescript */ export type ThrottledFunction any> = (...args: Parameters) => ReturnType; export declare function throttle any>(func: T, limit: number): ThrottledFunction;