import { InjectionKey, ComputedRef } from 'vue'; import { TdSelectProps, TdOptionProps, SelectValue } from '../type'; export declare const selectInjectKey: InjectionKey; indeterminate: boolean; isCheckAll: boolean; onCheckAllChange: (checked: boolean) => void; getSelectedOptions: (selectValue?: SelectValue[] | SelectValue) => TdOptionProps[]; displayOptions: TdSelectProps['options']; emitBlur: (e: MouseEvent | KeyboardEvent) => void; }>>;