import type { Option } from './option.js'; type Map = { any, Opt extends Option[0]>>(mapFn: Fn): (option: Opt) => Option>; any, Opt extends Option[0]>>(mapFn: Fn, option: Opt): Option>; }; /** * Transforms `Option` to `Option` by applying the provided function to the contained value of `Some` and leaving * `None` values unchanged. * * @tags option, transform, transform-value, right-biased */ export declare const map: Map; export {};