UNPKG

407 BTypeScriptView Raw
1import * as React from 'react';
2
3export interface NativeSelectInputProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
4 disabled?: boolean;
5 IconComponent?: React.ElementType;
6 inputRef?: React.Ref<HTMLSelectElement>;
7 variant?: 'standard' | 'outlined' | 'filled';
8}
9
10declare const NativeSelectInput: React.ComponentType<NativeSelectInputProps>;
11
12export default NativeSelectInput;