import * as React from 'react';
import { type useDialogRoot } from '../../dialog/root/useDialogRoot.js';
export interface AlertDialogRootContext extends useDialogRoot.ReturnValue {
    /**
     * Determines if the dialog is nested within a parent dialog.
     */
    nested: boolean;
}
export declare const AlertDialogRootContext: React.Context<AlertDialogRootContext | undefined>;
export declare function useAlertDialogRootContext(): AlertDialogRootContext;
