import type { Writable } from "svelte/store"; export declare type IStateStore = Writable; export declare const CONTEXT_STATE: unique symbol; export declare function state(default_value: boolean): IStateStore; export declare function get_state_context(): IStateStore | undefined; export declare function make_state_context(default_value: boolean): IStateStore;