import type { AppState } from "./system/state/app.state.js"; export interface AppProps { basePath: string; initialAppState?: AppState; } export declare const App: ({ basePath, initialAppState }: AppProps) => import("react/jsx-runtime").JSX.Element | null;