import { ArrayIteratee, ObjectIteratee } from '../interfaces'; /** * Checks if `predicate` returns truthy for **any** element of `collection`. Iteration is stopped once `predicate` returns truthy. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 14,175 bytes * - Micro-dash: 266 bytes */ export declare function some(array: T[] | undefined, predicate: ArrayIteratee): boolean; export declare function some(object: T | undefined, predicate: ObjectIteratee): boolean;