import { type JSX } from 'react'; import type { GanttSegmentData } from '../../../../charts/gantt-chart/types/gantt-chart.js'; import type { DataTableGanttColumnConfig } from '../ColumnTypes/column-types-types.js'; /** * TypeGuard to check for GanttSegmentData */ export declare function isGanttSegmentData(value: any): value is GanttSegmentData; type DataTableGanttChartCellProps = Readonly<{ data: GanttSegmentData | GanttSegmentData[]; parentData?: GanttSegmentData | GanttSegmentData[]; columnId: string; config: DataTableGanttColumnConfig; isLastPageRow: boolean; }>; /** * @internal */ export declare const DataTableGanttChartCell: ({ data, parentData, columnId, config, isLastPageRow, }: DataTableGanttChartCellProps) => JSX.Element; export {};