import { type Readable, type Writable } from 'svelte/store'; import type { State } from '../types/state'; export declare function updateOrCreateStore(data: State): void; export declare function injectStore(): { isShown: Writable; state: Writable>; optionsMap: Readable>; currentOption: Readable; lastCurrentOption: Writable; preselectedOptionId: Writable; isWaitingOption: Readable; isDesktop: boolean; };