import type { AppState } from "./system/state/app.state.js"; import type { BootSnapshot } from "./system/state/fetch.app.state.js"; export interface AdminOptions { mountElement?: Element | null; basePath?: string; reactStrictMode?: boolean; initialAppState?: AppState; initialBootstrap?: BootSnapshot; } export declare const createRoot: (options?: AdminOptions) => void; export declare const AdminApp: (options?: AdminOptions) => void;