import type { Refinement } from "../../../../Function/index.js";
import * as O from "../../../../Option/index.js";
import type * as Chunk from "../core.js";
/**
* Returns the first element that satisfies the predicate.
*/
export declare function find_(self: Chunk.Chunk, f: Refinement): O.Option;
export declare function find_(self: Chunk.Chunk, f: (a: A) => boolean): O.Option;
/**
* Returns the first element that satisfies the predicate.
*
* @ets_data_first find_
*/
export declare function find(f: Refinement): (self: Chunk.Chunk) => O.Option;
export declare function find(f: (a: A) => boolean): (self: Chunk.Chunk) => O.Option;
//# sourceMappingURL=find.d.ts.map