import React from 'react'; import IDialogPropTypes from './IDialogPropTypes'; export default class DialogWrap extends React.Component { _component: any; container: any; static defaultProps: { visible: boolean; prefixCls: string; onClose: null; }; componentDidMount(): void; shouldComponentUpdate({ visible }: { visible: any; }): boolean; componentWillUnmount(): void; componentDidUpdate(): void; saveRef: (node: any) => void; getComponent: (visible: any) => JSX.Element; removeContainer: () => void; getContainer: () => any; renderDialog(visible: any): void; render(): any; }