import React from "react";
import { GanttDataProps, GanttStatusListProps, GanttType } from "../types";
declare const GanttTime: React.FC<{
    list: GanttDataProps[];
    headBodyPaddingY: number;
    refresh: boolean;
    showLine: boolean;
    ganttType: GanttType;
    statusList?: GanttStatusListProps[];
    onChangeScrollBarHeight: (e: number) => void;
    onClickText: (e: GanttDataProps) => void;
}>;
export default GanttTime;
