import { default as React } from 'react';
/**
 * Props for the ShadowWrapper component
 */
interface ShadowWrapperProps {
    children: React.ReactNode;
}
/**
 * Component that wraps content in a Shadow DOM for style isolation
 *
 * @param children - React elements to render inside the Shadow DOM
 * @returns The shadow DOM wrapper and its children
 */
export declare const ShadowWrapper: React.FC<ShadowWrapperProps>;
export {};
