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 * * * Information * This is an info alert * * ``` * * @remarks * - Wraps the HTML `

` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Uses prominent typography styling. */ export declare const AlertTitle: React.ForwardRefExoticComponent>; //# sourceMappingURL=AlertTitle.d.ts.map