import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { SelectOption, YcSelectV2Props, SelectValueType } from './type'; import { FieldValueType, RecordType } from 'yc-pro-components/es/types'; declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { modelValue: string; options: () => never[]; searchMode: string; pageSize: number; placeholder: string; clearable: boolean; filterable: boolean; disabled: boolean; reserveKeyword: boolean; allowCreate: boolean; defaultFirstOption: boolean; multiple: boolean; collapseTags: boolean; maxCollapseTags: number; initialOptions: () => never[]; allSelect: boolean; }>, { reload: () => Promise; loadMore: () => Promise; clear: () => void; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: FieldValueType) => void; change: (value: SelectValueType) => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { modelValue: string; options: () => never[]; searchMode: string; pageSize: number; placeholder: string; clearable: boolean; filterable: boolean; disabled: boolean; reserveKeyword: boolean; allowCreate: boolean; defaultFirstOption: boolean; multiple: boolean; collapseTags: boolean; maxCollapseTags: number; initialOptions: () => never[]; allSelect: boolean; }>>> & { onChange?: ((value: SelectValueType) => any) | undefined; "onUpdate:modelValue"?: ((value: FieldValueType) => any) | undefined; }, { disabled: boolean; filterable: boolean; options: SelectOption[]; pageSize: number; modelValue: string | number | boolean | string[] | [string, string] | number[] | Date | RecordType | boolean[] | Date[] | [Date, Date] | [number, number] | string[][] | number[][] | null; multiple: boolean; placeholder: string; clearable: boolean; collapseTags: boolean; maxCollapseTags: number; allowCreate: boolean; defaultFirstOption: boolean; reserveKeyword: boolean; searchMode: "local" | "remote"; initialOptions: SelectOption[]; allSelect: boolean; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};