import type { TypographyVariantsOptions } from '@mui/material'; import type { CSSProperties } from 'react'; declare module '@mui/material/styles' { interface TypographyVariants { label: CSSProperties; groupHeading: CSSProperties; } interface TypographyVariantsOptions { label?: CSSProperties; groupHeading?: CSSProperties; } } declare module '@mui/material/Typography' { interface TypographyPropsVariantOverrides { label: true; groupHeading: true; } } declare const typography: TypographyVariantsOptions; export default typography;