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 * * * Information * This is an info alert message * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Uses body text styling. */ export declare const AlertDescription: React.ForwardRefExoticComponent>; //# sourceMappingURL=AlertDescription.d.ts.map