import { WangsIcons } from '../components/icon/Icon.vue.d'; export type OptionValue = string | number | boolean | Record; export type DropdownOption = { label?: string; value?: OptionValue; visible?: boolean; icon?: WangsIcons; [key: string]: any; }; export type MultiSelectOption = { label?: string; value?: OptionValue; visible?: boolean; icon?: WangsIcons; [key: string]: any; };