import { type Readable, type Writable } from 'svelte/store'; export declare const FUI_ROOT_CONTEXT_KEY = "fui-context/root"; export type FluentRootContext = { appElement$: Writable; rootElement: Writable; overlayElement: Writable; screens: Readable>; activeScreen: Readable<[key: string, value: string]>; layouts: Writable>; }; export declare function getFluentRootContext(): FluentRootContext; export declare function setFluentRootContext(context: FluentRootContext): FluentRootContext;