import React from 'react';
type AlertModalProps = {
    visible: boolean;
    closable?: boolean;
    maskClosable?: boolean;
    contentMessage: string;
    cancelText?: string;
    okText: string;
    onCancel?: () => void;
    onOk: () => void;
};
declare const AlertModal: (props: AlertModalProps) => React.JSX.Element;
export default AlertModal;
