import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface AlertDescriptionProps extends ComposableProps<'div'> {
/**
* The description/message content.
*/
children: React.ReactNode;
}
/**
* AlertDescription Component
*
* A composable component for the description/message of an Alert.
* Typically used within Alert.
*
* @public
*
* @example
* ```tsx
*