/** * Creates a throttled function that only invokes func at most once per every wait milliseconds. * Similar to lodash throttle. */ export declare function throttle any>(func: T, wait: number): T & { cancel: () => void; flush: () => ReturnType | undefined; }; //# sourceMappingURL=throttle.d.ts.map