import { type TextBoxOwnProps } from '../TextBox'; export type TypographyVariant = 'display' | 'heading' | 'subheading' | 'body' | 'caption' | 'link'; export type TypographyAppearance = 'light' | 'dark'; type TypographyPreset = Omit & { tag?: React.ElementType; letterSpacing?: React.CSSProperties['letterSpacing']; }; type TypographyProps = Partial & { variant: TypographyVariant; appearance?: TypographyAppearance; children?: React.ReactNode; className?: string; href?: string; target?: React.HTMLAttributeAnchorTarget; rel?: string; }; export declare const Typography: { ({ variant, appearance, style, color, colorHover, ...overrides }: TypographyProps): import("react").JSX.Element; displayName: string; }; export {};