export interface DropdownItem { placeholder?: string; label: string; value: string | number | string[] | number[]; prop: string; keyName?: string; keyValue?: string; options?: DropdownOption[]; custom?: boolean; slot?: string; } export interface DropdownOption { label: string; value: string | number; }