import type { FightingSize } from '../../_interface'; import type { BasicType } from '../../_utils/props/interface'; 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, FightingSize | null>; readonly placeholder: BasicType, string | null>; 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, FightingSize | null>; readonly placeholder: BasicType, string | null>; readonly clear: BasicType; readonly disabled: BasicType; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: SelectModelValue) => any) | undefined; }, { readonly width: string | number; readonly size: FightingSize; readonly disabled: boolean; readonly name: string; readonly modelValue: SelectModelValue; readonly onChange: SelectChange; readonly placeholder: string; readonly clear: boolean; }>; export default _sfc_main;