import { Sequence } 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) => T} transform * @returns {Sequence} */ map(this: Sequence, transform: (element: S) => T): Sequence; }