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