import { IndicatorData } from '../../../../core/components/annotations/components/indicators/types.js'; import { AnnotationsTrackConfig } from '../../../../core/components/annotations/types/annotations-track-props.js'; import { XYChartAnnotationsMarkerProps } from '../../../slots/Annotations/Marker.js'; import { XYChartAnnotationsTrackProps } from '../../../slots/Annotations/Track.js'; import { XYChartData } from '../../../types/xy-chart.js'; export declare const getIndicatorsFromAnnotations: (data: XYChartData[], tracksConfig: XYChartAnnotationsTrackProps, markersConfig: XYChartAnnotationsMarkerProps) => { indicators: { alwaysVisible: IndicatorData[]; selectable: Map; }; annotationsByTrack: Map; hiddenTracks: Set; };