import { SetupContext, Ref } from 'vue'; import { TdSelectInputProps } from '../type'; import { SelectInputCommonProperties } from '../types'; import { TagInputValue } from '../../tag-input'; import { PopupInstanceFunctions } from '../../popup'; export interface RenderSelectMultipleParams { commonInputProps: SelectInputCommonProperties; onInnerClear: (context: { e: MouseEvent; }) => void; popupVisible: boolean; allowInput: boolean; } export declare function useMultiple(props: TdSelectInputProps, context: SetupContext, popupRef: Ref): { tags: import("vue").ComputedRef; tPlaceholder: import("vue").ComputedRef; tagInputRef: Ref; isMultipleFocus: Ref; multipleInputValue: Ref; renderSelectMultiple: (p: RenderSelectMultipleParams) => import("vue/jsx-runtime").JSX.Element; };