/**
 * Throttles an async iterator. Emits a value and then prevents emits until timer has completed.
 */
export declare function throttle<T>(timer: (value: T) => Promise<void>): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;
