import { Id, MultiselectOptionTagProps } from '../types/index'; export type HTMLElementTagNameType = keyof HTMLElementTagNameMap; export interface DraggableChangeEvent { added?: { newIndex: number; element: T; }; removed?: { oldIndex: number; element: T; }; moved?: { newIndex: number; oldIndex: number; element: T; }; } export type MultiselectOptionWithAvatarsTagProps = MultiselectOptionTagProps<{ label: string; value: Id; avatar?: string; }>;