import React from "react";
import { TaskListProps } from "@/types";
/**
 * TaskList Component - Displays the list of task groups on the left side of the Gantt chart
 */
declare const TaskList: React.FC<TaskListProps>;
export default TaskList;
