import type { VariableDictionary } from "../types/variables";
import { type Readable } from "svelte/store";
export type VariablesStore = Readable<VariableDictionary | undefined>;
export declare function setVariablesContext(variables: VariablesStore): void;
export declare function getVariablesContext(): VariablesStore;
export declare function getOptionalVariablesContext(): VariablesStore;
