import { MultipleSelectProps, SingleSelectProps } from './types'; export type { ChipItem, CustomSelectionDisplayProps, SelectGroupHeaderRendererProps, SelectOptionRendererProps, DropdownOptionsProps, MultipleSelectProps, SelectControlsHandler, SelectControlsHandle, SelectControlsRef, SelectDisplayMode, SelectDropdownOptions, SelectOptionActivatePayload, SelectOptionType, SelectOverflow, SelectProps, SelectPropsCompat, SelectSize, SelectVariant, SelectionDisplayProps, SingleSelectProps, } from './types'; declare function Select(props: SingleSelectProps): React.ReactElement; declare function Select(props: MultipleSelectProps): React.ReactElement; export default Select;