import { ReactNode } from 'react'; export interface SkfUiShadowDomProviderProps { children: ReactNode; /** Your application root */ feAppRoot: Element; /** If true, disables all SKF specific font-face rules */ feDisableFontFace?: boolean; /** Nonce value for CSP */ feNonce?: string; } /** * WARNING: THIS COMPONENT IS EXPERIMENTAL AND MAY CHANGE IN FUTURE RELEASES. * * This is an alternative to the `` component that allows you to * specify the root of the application as an Element directly instead of an id. * This can be useful when you want to render the application inside a Shadow DOM * since `document.getElementById` will not find your root if it's inside a * Shadow DOM. * * @experimental */ declare const SkfUiShadowDomProvider: { ({ children, feAppRoot, feNonce, feDisableFontFace, }: SkfUiShadowDomProviderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default SkfUiShadowDomProvider;