import { default as React } from 'react'; interface Props { children: React.ReactNode; isContainerMode?: boolean; } /** * This component creates a shadow root and injects styling so that outside * styling do not interfere with compactview and compactview styling does * not interfere with the DOM it's rendered in. */ export declare function ShadowRootInternal({ children, isContainerMode }: Props): React.JSX.Element; export {};