import { StoreNode } from "./store.js"; export declare function createMutable(state: T, options?: { name?: string; }): T; export declare function modifyMutable(state: T, modifier: (state: T) => T): void;