import { DefineComponent } from 'vue' export const MlSelect: DefineComponent<{ modelValue?: any multiple?: boolean filterable?: boolean placeholder?: string isAll?: boolean options?: any[] optionProps?: { label?: string value?: string disabled?: string children?: string } 'onUpdate:modelValue'?: (value: any) => void onChange?: (params: any) => void }>