import React from 'react'; export interface IDragAndDropItemProps { children: JSX.Element; dragData: T; dragId?: string; style?: React.CSSProperties; onDropEnd: (params: { data: T; _id: string }) => void; disabledCopyElement?: boolean; } export interface IDropItemProps { children: JSX.Element; style?: React.CSSProperties; onDropEnd: (params: { data: T; _id?: string }) => void; }