import { SelectOption, SelectValue, TdOptionProps, TdSelectProps } from './type'; export declare const getSingleContent: (value: TdSelectProps['value'], options: SelectOption[]) => string; export declare const getMultipleContent: (value: SelectValue[], options: SelectOption[]) => 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[];