import { ReactNode } from 'react'; declare type PortalProps = Readonly<{ target?: HTMLElement; children?: ReactNode; }>; export default function Portal({ target, children }: PortalProps): import("react").ReactPortal; export {};