import { Unit } from "../../../fun/domains/unit/state"; import { BasicUpdater, Updater } from "../../../fun/domains/updater/state"; import { BasicFun, Fun } from "../../../fun/state"; export type Maybe = e | undefined; export declare const Maybe: { Default: (_: e | undefined) => e | undefined; Updaters: { value: (_: BasicUpdater) => Updater>; ensureValue: (_: BasicFun) => Updater>; }; Operations: { map: (f: BasicFun) => Fun, Maybe>; }; }; //# sourceMappingURL=state.d.ts.map