import type { Awaitable } from "./Awaitable";
export declare function maps<T, R>(fn: (x: T, i: number) => Awaitable<R>): TransformStream<T, R>;
