import { SelectOption, SelectValue, TdOptionProps, TdSelectProps } from './type'; export declare const getSingleContent: (value: TdSelectProps['value'], optionsMap: Map, TdOptionProps>) => string; export declare const getMultipleContent: (value: SelectValue[], optionsMap: Map, TdOptionProps>) => string[]; export declare const getNewMultipleValue: (innerValue: SelectValue[], optionValue: SelectValue) => { value: SelectValue[]; isCheck: boolean; }; export declare const getAllSelectableOption: (options: TdOptionProps[]) => TdOptionProps[]; export declare const flattenOptions: (options: (TdOptionProps & { isCreated?: boolean; })[]) => SelectOption[];