import type { Transducer } from "./api.js"; /** * Time-based version of {@link throttle}. Ignores any new values in the `delay` * interval since the last accepted value. * * @remarks * Only to be used in async contexts and NOT with {@link transduce} directly. * * See also: * * - [`thi.ng/rstream`](https://thi.ng/rstream) * - [`thi.ng/csp`](https://thi.ng/csp). * * @param delay - */ export declare function throttleTime(delay: number): Transducer; export declare function throttleTime(delay: number, src: Iterable): IterableIterator; //# sourceMappingURL=throttle-time.d.ts.map