import { HTMLProps } from 'react'; type Variant = "body1" | "body2" | "subtitle1" | "subtitle2" | "overline" | "caption"; export interface TextProps extends HTMLProps { variant?: Variant; as?: string; } export declare const Text: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export {};