/** @returns Throttled function that can be called at most once in given waitTime(ms). */ declare const throttle: void>(fn: F, waitTime: number) => ((...args: Parameters) => void); export default throttle; //# sourceMappingURL=throttle.d.ts.map