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