/// import * as React from "react"; export interface IIFrameDialogContentProps { url: string; close: () => void; iframeOnLoad?: (iframe: any) => {}; } /** * IFrame Dialog content */ export default class IFrameDialogContent extends React.Component { private _iframe; constructor(props: IIFrameDialogContentProps); render(): JSX.Element; private _iframeOnLoad(); }