import type { Predicate, Refinement } from "../../../../Function/index.js"; import * as C from "../core.js"; /** * Finds the first element emitted by this stream that satisfies the provided predicate. */ export declare function find_(self: C.Stream, f: Refinement): C.Stream; export declare function find_(self: C.Stream, f: Predicate): C.Stream; /** * Finds the first element emitted by this stream that satisfies the provided predicate. * @ets_data_first find_ */ export declare function find(f: Predicate): (self: C.Stream) => C.Stream; //# sourceMappingURL=find.d.ts.map