import { type Attributes } from 'react'; interface GanttLineRendererProps extends Attributes { width: number; height: number; loading?: boolean; showBackground?: boolean; } /** * @internal */ export declare const GanttChartLineRenderer: (props: GanttLineRendererProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null; export {};