import { type ReactNode } from "react"; export type MuiThemeProviderProps = { children: ReactNode; }; /** * Bridges Designsystemet's colour tokens into a MUI theme, so MUI components * (most notably the data grid) follow Designsystemet instead of MUI defaults. * * This lives in a separate entry point (`@olenbetong/synergi-react/mui`) so apps * that have migrated to Designsystemet don't pull ~160 kB of MUI and Emotion * into their bundle just by using `AppShell`. Wrap `AppShell` with it in apps * that still render MUI components: * * @example * ```tsx * import { AppShell } from "@olenbetong/synergi-react"; * import { MuiThemeProvider } from "@olenbetong/synergi-react/mui"; * * * {children} * * ``` */ export declare function MuiThemeProvider({ children }: MuiThemeProviderProps): import("react").JSX.Element;