import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface AlertTitleProps extends ComposableProps<'h4'> {
/**
* The title text.
*/
children: React.ReactNode;
}
/**
* AlertTitle Component
*
* A composable component for the title of an Alert.
* Typically used within Alert.
*
* @public
*
* @example
* ```tsx
*