import { SelectExpose, SelectProps, SelectSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = SelectSlots; type __VLS_Props = SelectProps; type __VLS_ModelProps = { modelValue?: string | number | boolean; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, SelectExpose, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { clear: () => any; change: (value: string | number | boolean) => any; "update:modelValue": (value: string | number | boolean) => any; selectOption: (option: any) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClear?: (() => any) | undefined; onChange?: ((value: string | number | boolean) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined; onSelectOption?: ((option: any) => any) | undefined; }>, { size: "mini" | "small" | "medium" | "large"; placeholder: string; maxHeight: string; options: any[]; fieldNames: { label?: string; value?: string; disabled?: string; }; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };