import { FC } from 'react'; import { TextProps } from '../../../Text'; export type AlertTitleProps = TextProps; /** * AlertTitle renders the primary heading text of an Alert. * It is intended to communicate the main message or summary * of the alert to the user. * * The title is rendered using the Text primitive to ensure * consistent typography, with a predefined font weight and * size to establish visual prominence within the Alert. */ export declare const AlertTitle: FC;