import { Flat } from "../flatstate/flat.js"; import { WatchTower } from "../watch/tower.js"; import { Reactor } from "../reactor/reactor.js"; import { SignalTower } from "../signals/tower.js"; export declare const flat: Flat; export declare const signals: SignalTower; export declare const watch: WatchTower; export declare const flatstate: (state: S) => S; export declare const signal: (value: V) => import("../index.js").Signal; export declare const computed: (fun: () => V) => import("../index.js").Signal; export declare const opSignal: (op?: import("../index.js").Op.For) => import("../index.js").OpSignal; export declare const reactor: Reactor;