import type { JSX } from 'react'; import type { DataTableGanttColumnConfig } from '../ColumnTypes/column-types-types.js'; type DataTableGanttAnnotationIndicatorsProps = Readonly<{ width: number; height: number; min: number; max: number; config: DataTableGanttColumnConfig; columnId: string; isLastPageRow: boolean; }>; /** * Renders indicators for gantt chart annotations that correspond to the annotation marker positions in the header. * * Indicators are rendered as SVG elements on top of the gantt chart cells, and their visibility is determined based on * the current selection state and the configuration provided in the annotations header. * * @internal */ export declare const DataTableGanttAnnotationIndicators: ({ width, height, min, max, config, columnId, isLastPageRow, }: DataTableGanttAnnotationIndicatorsProps) => JSX.Element | null; export {};