import React from 'react'; import './index.scss'; interface TProps { /** * 属性注释 */ visible?: boolean; message?: string; tips?: string; iconProps?: object; dataSource?: object[]; } interface TState { } declare class ConfirmDialog extends React.Component { static propTypes: { visible: any; message: any; tips: any; iconProps: any; dataSource: any; }; static defaultProps: { visible: boolean; message: string; tips: string; dataSource: any[]; iconProps: { type: string; }; }; state: TState; renderFooter(): JSX.Element; render(): JSX.Element; } export default ConfirmDialog;