export interface SafePortalProps { children: React.ReactNode; id: string; className: string; attributes: Record; } /** * Renders content within a React Portal. * * Portal is attached to a DOM node with a matching id. If this node doesn't exist, the component * will trigger the creation of one, then re-render. */ declare const SafePortal: ({ children, id, className, attributes, }: SafePortalProps) => import("react").ReactPortal | null; export default SafePortal;