diff --git a/packages/mui-material/src/Select/Select.d.ts b/packages/mui-material/src/Select/Select.d.ts index 6e7d1ebd5b8544..63efd5d898fd20 100644 --- a/packages/mui-material/src/Select/Select.d.ts +++ b/packages/mui-material/src/Select/Select.d.ts @@ -11,7 +11,7 @@ import { FilledInputProps } from '../FilledInput'; export { SelectChangeEvent }; export interface BaseSelectProps - extends StandardProps { + extends StandardProps { /** * If `true`, the width of the popover will automatically be set according to the items inside the * menu, otherwise it will be at least the width of the select input. @@ -152,7 +152,10 @@ export interface BaseSelectProps } export interface FilledSelectProps - extends Omit { + extends Omit< + FilledInputProps, + 'value' | 'onChange' | 'id' | 'classes' | 'inputProps' | 'placeholder' + > { /** * The variant to use. * @default 'outlined' @@ -161,7 +164,7 @@ export interface FilledSelectProps } export interface StandardSelectProps - extends Omit { + extends Omit { /** * The variant to use. * @default 'outlined' @@ -170,7 +173,10 @@ export interface StandardSelectProps } export interface OutlinedSelectProps - extends Omit { + extends Omit< + OutlinedInputProps, + 'value' | 'onChange' | 'id' | 'classes' | 'inputProps' | 'placeholder' + > { /** * The variant to use. * @default 'outlined'