import * as React from "react"; export interface RenderToBodyProps { style?: React.CSSProperties; className?: string; children?: React.ReactElement; } export default class RenderToBody extends React.Component { rootElm: HTMLDivElement; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; renderComponent: () => void; unRenderComponent: () => void; getRootElement: () => HTMLDivElement; render(): any; }