/// import { BaseDialogProps } from '../../utils/types'; interface AlertDialogProps extends BaseDialogProps { buttonText?: string; body?: string | JSX.Element; } export declare function AlertDialog(props: AlertDialogProps): JSX.Element | null; export {};