diff --git a/packages/mui-material/src/Select/Select.d.ts b/packages/mui-material/src/Select/Select.d.ts index 1bbabc25e35eae..f4984bdc71f84d 100644 --- a/packages/mui-material/src/Select/Select.d.ts +++ b/packages/mui-material/src/Select/Select.d.ts @@ -151,7 +151,8 @@ export interface BaseSelectProps variant?: SelectVariants; } -export interface FilledSelectProps extends Omit { +export interface FilledSelectProps + extends Omit { /** * The variant to use. * @default 'outlined' @@ -159,7 +160,8 @@ export interface FilledSelectProps extends Omit { +export interface StandardSelectProps + extends Omit { /** * The variant to use. * @default 'outlined' @@ -167,7 +169,8 @@ export interface StandardSelectProps extends Omit { +export interface OutlinedSelectProps + extends Omit { /** * The variant to use. * @default 'outlined' @@ -193,8 +196,7 @@ export type SelectProps = * - [Select API](https://mui.com/material-ui/api/select/) * - inherits [OutlinedInput API](https://mui.com/material-ui/api/outlined-input/) */ - -declare const Select: ((props: SelectProps) => JSX.Element) & { +declare const Select: ((props: SelectProps) => JSX.Element) & { muiName: string; };