import { Predicate } from "../types"; /** * * @operation `Action` * @param iterable * @param predicate * @returns */ export declare function some(iterable: Iterable, predicate: Predicate): boolean;