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