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) => import("react").ReactElement | null) & { EmptyState: ({ children }: import("../../index.js").EmptyStateProp) => import("react/jsx-runtime").JSX.Element; ErrorState: ({ children }: import("../../index.js").ErrorStateProps) => import("react/jsx-runtime").JSX.Element; }; export {};