/** * All standard components exposed by `material-ui` are `StyledComponents` with * certain `classes`, on which one can also set a top-level `className` and inline * `style`. */ export type ExtendMui = Omit; export type MakeOptional = Omit & Partial>; export type MakeRequired = Omit & Required>; export type DefaultizedProps

= Omit & Required> & AdditionalProps;