import type { Readable, Writable } from "svelte/store"; export declare function mapVariableToStore(variableName: string, store: Readable & { set(this: void, value: unknown): void; }, isLoadingVariableStore: Readable & { set(this: void, value: boolean): void; }): void; export declare function createStoreFromVariable(variableName: string): { isLoadingVariableStore: Writable; store: Writable; };