import { FC } from 'react'; import { TextProps } from '../../../Text'; export type AlertContentProps = TextProps; /** * AlertContent renders the main textual content of an Alert. * It is intended for descriptive or supporting text displayed * inside the alert container. * * The component uses the Text primitive for consistent typography * and renders its content as a paragraph element. A predefined text * size is applied to ensure visual hierarchy within the Alert. */ export declare const AlertContent: FC;