import { type Attributes } from 'react'; import type { GanttChartConfig, GanttSegmentData } from './types/gantt-chart.js'; /** * GanttChartLine component * @internal */ export declare const GanttChartLine: (props: Attributes & { min: number; max: number; size?: "default" | "condensed" | "comfortable"; /** When true: Sets an overlay with default loader. */ loading?: boolean; segmentsData: GanttSegmentData[]; parentSegmentsData?: GanttSegmentData[]; config: GanttChartConfig; } & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => import("react").ReactElement | null;