import React from 'react';
import { type GlassVariant } from '../../../lib/glass';
import type { ComposableProps } from '../../../lib/slot';
/**
* AlertDialogContent component props
*
* @public
*/
export interface AlertDialogContentProps extends ComposableProps<'div'> {
/**
* Content children
*/
children: React.ReactNode;
/**
* Apply glassmorphism effect to the alert dialog surface.
* @default false
*/
glass?: GlassVariant;
}
/**
* AlertDialogContent Component
*
* The main content wrapper for the alert dialog.
* Handles backdrop, positioning, and animations.
* Unlike Modal, AlertDialog cannot be dismissed by clicking outside or pressing ESC.
*
* @public
*
* @example
* ```tsx
*
* Open
*
*
* Title
*
*
* Cancel
* Confirm
*
*
*
* ```
*/
export declare const AlertDialogContent: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AlertDialogContent.d.ts.map