import { BasicFun, Fun } from "../../state"; export type BasicUpdater = BasicFun; export type Updater = BasicUpdater & { fun: Fun; then(other: BasicUpdater): Updater; thenMany(others: Array>): Updater; }; export declare const Updater: (u: BasicUpdater) => Updater; //# sourceMappingURL=state.d.ts.map