import React from 'react'; import { GanttDataType, OnBarChangeType, OnBarDoubleClickType } from '../../types'; import './Chart.css'; interface ChartProps { data: GanttDataType[]; className?: string; onBarDoubleClick?: OnBarDoubleClickType; onBarChange?: OnBarChangeType; } declare const Chart: React.FC; export default Chart;