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("../../index.js").BaseXAxisProps & import("../../index.js").TimeXAxisProps) | (import("../../index.js").BaseXAxisProps & import("../../index.js").NumericalXAxisProps); tooltipProps: AnnotationsTooltipProps; };