import { Ref } from 'react'; import { TagSize } from '@mezzanine-ui/core/tag'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { SelectValue } from './typings'; export interface SelectTriggerTagsProps { disabled?: boolean; inputProps?: Omit, 'autoComplete' | 'children' | 'defaultValue' | 'disabled' | 'readOnly' | 'required' | 'type' | 'value' | `aria-${'autocomplete' | 'disabled' | 'haspopup' | 'multiline' | 'readonly' | 'required'}`>; inputRef?: Ref; onTagClose?: (target: SelectValue) => void; overflowStrategy: 'counter' | 'wrap'; readOnly?: boolean; required?: boolean; searchText?: string; size?: TagSize; showTextInputAfterTags?: boolean; value?: SelectValue[]; } declare const SelectTriggerTags: import("react").ForwardRefExoticComponent>; export default SelectTriggerTags;