import React from 'react'; export interface TextProps extends React.HTMLAttributes { component?: keyof JSX.IntrinsicElements; variant?: 'body1' | 'body2' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'display1' | 'display2' | 'label' | 'caption'; noWrap?: boolean; color?: 'inherit' | 'muted' | 'light'; }