/** * Throttle function to limit the rate at which a function is called */ export declare function throttle any>(func: T, limit: number): (...args: Parameters) => void; //# sourceMappingURL=throttle.d.ts.map