import React from 'react'; export interface Props { children?: React.ReactNode; } export declare function PortalHost(): JSX.Element; export declare function Portal({ children }: Props): React.ReactPortal | null;