import type { VmSize } from '../..'; import type { BasicType } from '../../_utils'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { SelectChange, SelectModelValue } from './interface'; declare const _sfc_main: DefineComponent<{ readonly modelValue: { readonly type: PropType; readonly default: () => null; readonly required: true; }; readonly width: { readonly type: PropType; readonly default: () => null; }; readonly name: BasicType, string | null>; readonly size: BasicType, VmSize | null>; /** 如果没有插槽内容,返回空数组 */ readonly placeholder: BasicType, string | null>; /** 通过获取到的子元素,计算当前绑定值对应的 label 展示文本框的内容 */ readonly clear: BasicType; readonly disabled: BasicType; readonly onChange: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: SelectModelValue) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly; readonly default: () => null; readonly required: true; }; readonly width: { readonly type: PropType; readonly default: () => null; }; readonly name: BasicType, string | null>; readonly size: BasicType, VmSize | null>; /** 如果没有插槽内容,返回空数组 */ readonly placeholder: BasicType, string | null>; /** 通过获取到的子元素,计算当前绑定值对应的 label 展示文本框的内容 */ readonly clear: BasicType; readonly disabled: BasicType; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: SelectModelValue) => any) | undefined; }, { readonly width: string | number; readonly size: VmSize; readonly disabled: boolean; readonly name: string; readonly modelValue: SelectModelValue; readonly onChange: SelectChange; readonly placeholder: string; readonly clear: boolean; }>; export default _sfc_main;