import type { VueNode } from '@antdv/ui/es/types'; import type { CustomTagProps, DisplayValueType, RenderNode } from '../BaseSelect'; import type { InnerSelectorProps } from './interface'; type SelectorProps = InnerSelectorProps & { removeIcon?: RenderNode; maxTagCount?: number | 'responsive'; maxTagTextLength?: number; maxTagPlaceholder?: VueNode | ((omittedValues: DisplayValueType[]) => VueNode); tokenSeparators?: string[]; tagRender?: (props: CustomTagProps) => VueNode; onToggleOpen: any; compositionStatus: boolean; choiceTransitionName?: string; onRemove: (value: DisplayValueType) => void; }; declare const SelectSelector: import("vue").DefineComponent, { onToggleOpen: any; }, {}>; export default SelectSelector;