declare module "vue-multiselect" { import { defineComponent } from 'vue' export interface VueMultiselectProps { options: T; searchable: boolean; trackBy: keyof T; label: keyof T; }; const Component: ReturnType>>; export default Component }