import type * as Chunk from "../core.js";
/**
* Determines whether a predicate is satisfied for at least one element of this chunk.
*/
export declare function exists_(self: Chunk.Chunk, f: (a: A) => boolean): boolean;
/**
* Determines whether a predicate is satisfied for at least one element of this chunk.
*
* @ets_data_first exists_
*/
export declare function exists(f: (a: A) => boolean): (self: Chunk.Chunk) => boolean;
//# sourceMappingURL=exists.d.ts.map