import { SxProps } from '@mui/system'; import { Theme } from '../styles/index.js'; import * as React from 'react'; 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;