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