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 last element in the array matching a predicate. * @tsplus static effect/core/stm/TArray.Aspects findLast * @tsplus pipeable effect/core/stm/TArray findLast * @tsplus location "@effect/core/stm/TArray/operations/findLast" */ export declare function findLast(f: Predicate): (self: TArray) => STM>; //# sourceMappingURL=findLast.d.ts.map