/// import * as React from 'react'; import IDialogPropTypes from './IDialogPropTypes'; declare class DialogWrap extends React.Component { static defaultProps: { visible: boolean; }; _component: React.ReactElement; renderComponent: (props: any) => void; removeContainer: () => void; shouldComponentUpdate({visible}: { visible: boolean; }): boolean; componentWillUnmount(): void; saveDialog: (node: any) => void; getComponent: (extra?: {}) => JSX.Element; getContainer: () => HTMLElement; render(): any; } export default DialogWrap;