import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; export declare const TextVariant: { heading1: string; heading2: string; heading3: string; heading4: string; heading5: string; headline: string; bodyLarge: string; body: string; caption: string; footnote: string; small: string; }; export type TextVariantType = (typeof TextVariant)[keyof typeof TextVariant]; export declare const TextWeight: { normal: string; medium: string; semibold: string; bold: string; }; export type TextWeightType = (typeof TextWeight)[keyof typeof TextWeight]; declare const textVariants: (props?: ({ variant?: string | number | null | undefined; weight?: string | number | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface TextProps extends React.HTMLAttributes, VariantProps { } declare const Text: React.ForwardRefExoticComponent>; export { Text, textVariants };