import { type JSX } from 'react'; import type { DataTableGanttColumnConfig } from '../ColumnTypes/column-types-types.js'; type DataTableGanttChartGridProps = Readonly<{ width: number; height: number; min: number; max: number; config: DataTableGanttColumnConfig; isSubrowIndicatorColumn: boolean; }>; /** * @internal */ export declare const DataTableGanttChartGrid: ({ width, height, min, max, config, isSubrowIndicatorColumn, }: DataTableGanttChartGridProps) => JSX.Element; export {};