import { default as React } from 'react'; interface ShadowRootProps { children: React.ReactNode; isContainerMode?: boolean; } /** * This component will create a shadow root if it is the first ShadowRoot in the tree. * Otherwise, it will just render it's children. This is useful as we don't always know * which component will be first in the tree, especially when the components are used * externally from the npm package. */ export declare function ShadowRoot({ children, isContainerMode }: ShadowRootProps): React.JSX.Element; export {};