declare module '@material-ui/core/styles/createTypography' { interface Paragraph { maxWidth: number; } interface Typography { paragraph: Paragraph; } interface TypographyOptions { paragraph: Paragraph; } } export {};