import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface TypographyProps { sx?: SxProps; align?: string; noWrap?: boolean; color?: 'primary' | 'secondary'; fontWeight?: number; paragraph?: boolean; textOverflow?: string; whiteSpace?: string; overflow?: string; variant?: string; component?: string; className?: string; children?: React.ReactNode; } export declare const Typography: FC; export {};