import * as React from 'react'; import { ListItemText } from '@material-ui/core'; const CustomComponent: React.FC<{ prop1: string; prop2: number }> = () =>
; function typographyPropsTest() { // @ts-expect-error ; ; ; ; // @ts-expect-error ; ; ; ; } function secondaryTypographyPropsTest() { // @ts-expect-error ; ; ; ; // @ts-expect-error ; ; ; ; } function mixedTypographyPropsTest() { ; ; ; ; ; }