import type { ArrayFnArgs } from './_types';
export declare const map: <T, U>(callbackFn: (element: T, index: number, array: readonly T[]) => U) => (array: readonly T[]) => U[];
