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