import * as React from 'react'; import type { BaseUIComponentProps } from '../../utils/types'; /** * * Demos: * * - [Alert Dialog](https://base-ui.netlify.app/components/react-alert-dialog/) * * API: * * - [AlertDialogTitle API](https://base-ui.netlify.app/components/react-alert-dialog/#api-reference-AlertDialogTitle) */ declare const AlertDialogTitle: React.ForwardRefExoticComponent>; declare namespace AlertDialogTitle { interface Props extends BaseUIComponentProps<'h2', OwnerState> { } interface OwnerState { open: boolean; } } export { AlertDialogTitle };