import React from 'react';
import type { ComposableProps } from '../../../lib/slot';
/**
* AlertDialogTitle component props
*
* @public
*/
export interface AlertDialogTitleProps extends ComposableProps<'h2'> {
/**
* Title text
*/
children: React.ReactNode;
}
/**
* AlertDialogTitle Component
*
* A composable title component for the alert dialog header.
* Provides accessible heading semantics via Radix auto-IDs.
*
* @public
*
* @example
* ```tsx
*
* Are you sure?
*
* ```
*/
export declare const AlertDialogTitle: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AlertDialogTitle.d.ts.map