import { FC, ReactNode } from 'react'; interface PortalProps { children: ReactNode; containerId?: string; } export declare const Portal: FC; export {};