import React from "react";
import { GanttChartProps, GanttChartRef } from "@/types";
/**
 * GanttChart Component with ViewMode support and Export functionality
 * A modern, customizable Gantt chart for project timelines
 */
declare const GanttChart: React.ForwardRefExoticComponent<GanttChartProps & React.RefAttributes<GanttChartRef>>;
export default GanttChart;
