UNPKG

511 BTypeScriptView Raw
1import * as React from 'react';
2import { SxProps } from '@mui/system';
3import { Theme } from '..';
4
5export 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
14declare const NativeSelectInput: React.JSXElementConstructor<NativeSelectInputProps>;
15
16export default NativeSelectInput;