/**
 * Tap an iterable
 */
export declare function tap<T>(func: (t: T) => void): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;
