import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from "../styles/index.js"; export interface NativeSelectInputProps extends React.SelectHTMLAttributes { disabled?: boolean | undefined; IconComponent: React.ElementType; inputRef?: React.Ref | undefined; variant?: 'standard' | 'outlined' | 'filled' | undefined; error?: boolean | undefined; sx?: SxProps | undefined; } declare const NativeSelectInput: React.JSXElementConstructor; export default NativeSelectInput;