import { Component } from 'react'; import { ModalConfirmProps, ModalConfirmState } from "./iModal"; declare class AlertDialog extends Component { static defaultProps: { onOk: () => void; onCancel: () => void; show: boolean; locale: string; }; constructor(props: ModalConfirmProps); UNSAFE_componentWillReceiveProps(nextProps: ModalConfirmProps): void; closeModal: () => void; handleOK: () => void; render(): JSX.Element; } export default AlertDialog;