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