import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
/**
* AlertDialogHeader component props
*
* @public
*/
export interface AlertDialogHeaderProps extends ComposableProps<'div'> {
/**
* Header content (typically AlertDialogTitle and AlertDialogDescription)
*/
children: React.ReactNode;
}
/**
* AlertDialogHeader Component
*
* A composable header section for the alert dialog.
* Typically contains AlertDialogTitle and AlertDialogDescription.
*
* @public
*
* @example
* ```tsx
*
*
* Are you sure?
* This action cannot be undone.
*
*
* ```
*/
export declare const AlertDialogHeader: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AlertDialogHeader.d.ts.map