import { AsyncSequence } from "../../sequency"; export declare class Map { /** * Transforms each element into another value by applying the given `transform` function and returns a new sequence. * * @param {(S) => Promise | T} transform * @returns {AsyncSequence} */ map(this: AsyncSequence, transform: (element: S) => Promise | T): AsyncSequence; }