import { ReactNode } from 'react'; interface PortalProps { children: ReactNode; customRootId?: string; className?: string; } export declare function Portal({ children, customRootId, className }: PortalProps): import("react").ReactPortal; export {};