import { type PropsWithChildren } from 'react'; import type { BaseAnnotationsChartProps } from '../../../core/components/annotations/types/annotations.js'; /** * TimeseriesChart Annotations subcomponent props * @public */ export interface TimeseriesChartAnnotationsProps extends BaseAnnotationsChartProps { /** * How many tracks to show by default, if there are more tracks than the specified here a scrollbar will be added. * @defaultValue 3 */ visibleTracksLimit?: number; } /** * @public */ export declare const Annotations: (props: PropsWithChildren) => null;