/// export * from '@mui/material/Typography'; export { default as Typography } from '@mui/material/Typography'; declare module '@mui/material/styles' { interface TypographyVariants { title: React.CSSProperties; body: React.CSSProperties; } interface TypographyVariantsOptions { title?: React.CSSProperties; body?: React.CSSProperties; } } declare module '@mui/material/Typography' { interface TypographyPropsVariantOverrides { title: true; body: true; } } import type { Components } from "../../styles"; export declare const TypographyThemeComponent: Components['MuiTypography'];