import { type ReactNode } from "react"; export type AppShellProps = { children: ReactNode; }; /** * Standard Synergi app chrome: error boundary, app menu and the toolbar toggle. * * This component is Designsystemet-only. Apps that still render MUI components * should additionally wrap it in `MuiThemeProvider` from * `@olenbetong/synergi-react/mui`, which bridges the Designsystemet colour * tokens into a MUI theme. */ export declare function AppShell({ children }: AppShellProps): import("react").JSX.Element;