export type ThrottledFn = { (): Promise; stop(): void; }; export declare function throttle(func: () => void, wait: number): ThrottledFn; //# sourceMappingURL=throttle.d.ts.map