import * as React from "react"; import { Root as StrataKitRoot } from "@stratakit/foundations"; import type { BaseProps } from "@stratakit/foundations/secret-internals"; type StrataKitRootProps = React.ComponentPropsWithoutRef; interface RootProps extends BaseProps<"div">, Pick { children?: React.ReactNode; /** * The color scheme to use for all components on the page. */ colorScheme: "light" | "dark"; } /** * Component to be used at the root of your application. It ensures that StrataKit theme for MUI is applied correctly. * * Example: * ```tsx * * * * ``` */ declare const Root: React.ForwardRefExoticComponent>; export { Root };