import { get } from 'svelte/store'; import type Window from './Window.svelte'; export interface Wstore { instances: Record; activatedFrame?: string; } export declare const wStore: { subscribe: (this: void, run: import("svelte/store").Subscriber, invalidate?: ((value?: Wstore | undefined) => void) | undefined) => import("svelte/store").Unsubscriber; set: (this: void, value: Wstore) => void; get: typeof get; create: (payload: any) => void; open: (payload: any) => void; };