import * as React from 'react';
import type { DialogRoot } from '../../dialog/root/DialogRoot.js';
/**
 * Groups all parts of the alert dialog.
 * Doesn’t render its own HTML element.
 *
 * Documentation: [Base UI Alert Dialog](https://base-ui.com/react/components/alert-dialog)
 */
declare const AlertDialogRoot: React.FC<AlertDialogRoot.Props>;
declare namespace AlertDialogRoot {
    type Props = Omit<DialogRoot.Props, 'modal' | 'dismissible'>;
}
export { AlertDialogRoot };
