/// <reference types="react" />
import { GanttDataProps, GanttHeadProps } from "../types";
import "./GanttOverview.css";
declare const GanttOverview: React.FC<{
    head: GanttHeadProps[];
    list: GanttDataProps[];
    headWidth: string;
    headBodyPaddingY: number;
    headBodyPaddingX: number;
    scrollBarHeight: number;
    open: boolean;
    onChange: (e: boolean) => void;
}>;
export default GanttOverview;
