import { default as React } from 'react'; import { TypographyProps } from '@mui/material'; import { TypographyFontFamilyType } from '../../typography'; interface AIDTTypographyProps extends TypographyProps { fontFamily?: TypographyFontFamilyType; fontWeight?: number; fontSize?: string; lineHeight?: number; } declare const AIDTTypography: React.FC; export default AIDTTypography;