import { Refinement } from "@tsplus/stdlib/data/Function"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Finds the first element emitted by this stream that satisfies the provided * predicate. * @tsplus static effect/core/stream/Stream.Aspects find * @tsplus pipeable effect/core/stream/Stream find * @tsplus location "@effect/core/stream/Stream/operations/find" */ export declare function find(f: Refinement): (self: Stream) => Stream; export declare function find(f: Predicate): (self: Stream) => Stream; //# sourceMappingURL=find.d.ts.map