import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { TArray } from "@effect/core/stm/TArray/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Find the first element in the array matching a predicate. * @tsplus static effect/core/stm/TArray.Aspects find * @tsplus pipeable effect/core/stm/TArray find * @tsplus location "@effect/core/stm/TArray/operations/find" */ export declare function find(p: Predicate): (self: TArray) => STM>; //# sourceMappingURL=find.d.ts.map