import { TypographyProps } from '@material-ui/core/Typography'; type TextType = 'subtitle1' | 'subtitle2' | 'body1' | 'body2'; export interface TextProps extends Omit { variant?: TextType; }