import { type FC } from "react"; import type VibeComponentProps from "../../../types/VibeComponentProps"; export interface AlertBannerTextProps extends VibeComponentProps { /** * The text content displayed within the alert banner. */ text: string; /** * If true, a left margin is applied to the alert banner text. */ marginLeft?: boolean; /** * The aria-live attribute value for the alert banner text. */ ariaLive?: "polite" | "assertive" | "off"; } declare const AlertBannerText: FC; export default AlertBannerText;