import { HTMLAttributes } from 'react';
type ShadowRootProps = HTMLAttributes & {
injectFontCss?: boolean | undefined;
styleNonce?: string | (() => string) | undefined;
colorScheme?: 'light' | 'dark' | undefined;
keepAspectRatio?: false | undefined | {
width: number;
height: number;
};
/**
* Mantine theme override to apply within the shadow root
* @see https://mantine.dev/theming/mantine-provider/#theme-prop
*/
theme?: any;
};
export declare function ShadowRoot({ children, theme, injectFontCss, styleNonce, colorScheme: explicitColorScheme, keepAspectRatio, ...props }: ShadowRootProps): import("react").JSX.Element;
export {};