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