import type { RefObject } from "react"; import type { IGanttBlock } from "@plane/types"; type RightDependencyDraggableProps = { block: IGanttBlock; ganttContainerRef: RefObject; }; export const RightDependencyDraggable = (props: RightDependencyDraggableProps) => <>;