import type { AnnotationsIntegrationTrackConfig } from '../../../../charts/core/components/annotations/components/indicators/types.js'; import type { GanttAnnotationsTrackConfig } from '../../../../charts/gantt-chart/types/gantt-chart.js'; /** * Converts GanttAnnotationsTrackConfig to AnnotationsIntegrationTrackConfig * by populating missing marker and track props and preserving indicatorsDisplay. * @param tracks - The array of gantt annotation track configs to convert. * @returns An array of AnnotationsIntegrationTrackConfig that includes all necessary props. * @internal */ export declare function toIntegrationTracks(tracks: GanttAnnotationsTrackConfig[]): AnnotationsIntegrationTrackConfig[];