import "./_dnt.polyfills.js"; import { type Func } from "./func.js"; import { type Timmer } from "./promise.js"; export declare namespace func_throttle { type ThrottledFunction = Func.SetReturn>> & { readonly isPending: boolean; cancel(): void; source: F; flush(): void; }; } export declare const func_throttle: (fn: T, wait?: number | Timmer, options?: { waitPromise?: boolean; before?: boolean; }) => func_throttle.ThrottledFunction; //# sourceMappingURL=throttle.d.ts.map