import { ModalProps } from './index'; import { ReactNode } from 'react'; export declare type ModalAlertProps = Omit & { confirmText?: ReactNode; onConfirm?: () => void | Promise; }; export declare function alert(p: ModalAlertProps): Promise;