import { IconType } from '../../utils/typescript'; export interface TransferProps { modelValue: Array; data: any[]; filterablePlaceholder?: string; props?: TransferOptionProps; defaultKeys?: (string | number)[]; filterable?: boolean; searchStrictly?: boolean; drag?: boolean; dragIcon?: IconType; } export interface TransferOptionProps { label?: string; key?: string; disabled?: string; }