export type PortalProps = { children: React.ReactNode; root?: string; type?: string; }; export declare function Portal({ children, root, type }: PortalProps): import("react").JSX.Element;