1 | import * as React from 'react';
|
2 | import { SxProps } from '@mui/system';
|
3 | import { Theme } from '..';
|
4 |
|
5 | export interface NativeSelectInputProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|
6 | disabled?: boolean;
|
7 | IconComponent: React.ElementType;
|
8 | inputRef?: React.Ref<HTMLSelectElement>;
|
9 | variant?: 'standard' | 'outlined' | 'filled';
|
10 | error?: boolean;
|
11 | sx?: SxProps<Theme>;
|
12 | }
|
13 |
|
14 | declare const NativeSelectInput: React.JSXElementConstructor<NativeSelectInputProps>;
|
15 |
|
16 | export default NativeSelectInput;
|