import { BodyTextInlineProps, BodyTextProps, EyebrowProps, HeadlineProps } from './types'; /** * Props for the Text component * @extends HeadlineProps<"h1" | "h2" | "h3" | "h4" | "h5" | "h6"> * @extends EyebrowProps * @extends BodyTextProps * @extends BodyTextInlineProps */ export type TextProps = HeadlineProps<"h1"> | HeadlineProps<"h2"> | HeadlineProps<"h3"> | HeadlineProps<"h4"> | HeadlineProps<"h5"> | HeadlineProps<"h6"> | EyebrowProps | BodyTextProps | BodyTextInlineProps; /** * Text component for displaying various types of text content with consistent styling. * * Features: * - Multiple text variants (headline, eyebrow, body) * - Semantic HTML elements (h1-h6, p, span) * - Multiple size options for each variant * * @example * Main Heading * Sub Heading * * @example * Category Label * * @example * Large body text * Deemphasized text * Inline text within other text */ export declare const Text: import('react').ForwardRefExoticComponent>;