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