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