import React from 'react'; import { type SelectProps } from '@mui/material/Select'; import { type SvgIconProps } from '../SvgIcon'; export declare const UnstableSelectIcon: React.ForwardRefExoticComponent & React.RefAttributes>; /** * IMPORTANT! * Any modification of the Select component should also be applied to the TextField component when being used as a select. * * Modified reasons: * - The MenuList should be dense when the size is set to tiny. * - Using a custom IconComponent. */ declare const Select: React.FC; export default Select;