export type UiSelectValue = string | number; export interface UiSelectOption { label: string; value: UiSelectValue; disabled?: boolean; } type __VLS_Props = { modelValue?: UiSelectValue | UiSelectValue[] | null; options: UiSelectOption[]; placeholder?: string; multiple?: boolean; disabled?: boolean; size?: 'sm' | 'md'; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: UiSelectValue | UiSelectValue[]) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((value: UiSelectValue | UiSelectValue[]) => any) | undefined; }>, { size: "sm" | "md"; multiple: boolean; disabled: boolean; placeholder: string; modelValue: UiSelectValue | UiSelectValue[] | null; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default; //# sourceMappingURL=UiSelect.vue.d.ts.map