import type { Awaitable } from "./Awaitable";
/** Note: peeks will not await peek fn, use forEachs if you want downstream tobe awaited  */
export declare function peeks<T>(fn: (x: T, i: number) => Awaitable<void>): TransformStream<T, T>;
