import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { TRef } from "@effect/core/stm/TRef/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Updates the value of the variable, returning a function of the specified * value. * @tsplus static effect/core/stm/TRef.Aspects modifySome * @tsplus pipeable effect/core/stm/TRef modifySome * @tsplus location "@effect/core/stm/TRef/operations/modifySome" */ export declare function modifySome(def: B, pf: (a: A) => Maybe): (self: TRef) => STM; //# sourceMappingURL=modifySome.d.ts.map