import { ComputedRef } from 'vue'; import { TdSelectProps, TdOptionProps, SelectValue, SelectOption } from '../type'; export declare const getSingleContent: (value: TdSelectProps["value"], isRemote: boolean, searchDisplayOptions: ComputedRef, optionsMap: ComputedRef, TdOptionProps>>) => string; export declare const getMultipleContent: (value: SelectValue[], isRemote: boolean, searchDisplayOptions: ComputedRef, optionsMap: ComputedRef, TdOptionProps>>) => string[]; export declare const getNewMultipleValue: (innerValue: SelectValue[], optionValue: SelectValue) => { value: SelectValue[]; isCheck: boolean; };