import type { Awaitable } from "./Awaitable";
type asyncMapOptions = {
    concurrency?: number;
};
export declare const pMaps: {
    <T, R>(fn: (x: T, i: number) => Awaitable<R>, options?: asyncMapOptions): TransformStream<T, R>;
};
export {};
