import React, { PropsWithChildren } from 'react'; export interface PortalProps extends PropsWithChildren { getContainer: () => Element; } export default class Portal extends React.Component { container: Element; constructor(props: PortalProps); render(): any; }