import { type ReactNode } from 'react'; import type { AnnotationsTooltipProps } from '../../core/components/annotations/components/tooltip/types/annotations-tooltip-props.js'; import type { AnnotationsMarkerConfig } from '../../core/components/annotations/types/annotations-marker-props.js'; import type { AnnotationsTrackConfig } from '../../core/components/annotations/types/annotations-track-props.js'; export declare const iterateSlots: (children: ReactNode) => { tracks: AnnotationsTrackConfig[]; aggregatedMarkers: AnnotationsMarkerConfig[]; xAxisProps: (import("../components/axis/types/annotations-x-axis-props.js").BaseXAxisProps & import("../components/axis/types/annotations-x-axis-props.js").TimeXAxisProps) | (import("../components/axis/types/annotations-x-axis-props.js").BaseXAxisProps & import("../components/axis/types/annotations-x-axis-props.js").NumericalXAxisProps); tooltipProps: AnnotationsTooltipProps; };