/** * 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 declare type ExtendMui = Omit; export declare type MakeOptional = { [P in K]?: T[P] | undefined; } & Omit; export declare type DefaultizedProps

= Omit & Required> & AdditionalProps;