export declare function forEach<T>(arr: T[], fn: (item: T, index: number) => void, { reverse }?: {
    reverse?: boolean | undefined;
}): void;
