import * as React from 'react'; export interface NativeSelectInputProps extends React.SelectHTMLAttributes { disabled?: boolean; IconComponent?: React.ElementType; inputRef?: React.Ref; variant?: 'standard' | 'outlined' | 'filled'; } declare const NativeSelectInput: React.ComponentType; export default NativeSelectInput;