/// import type { ScaleLinear } from 'd3-scale'; import type { AnnotationLookupTable, YAxisTick } from '../../types'; import type { OptionalDualAxisYAxis } from './types'; export interface YAxisAnnotationsProps { annotationsLookupTable: AnnotationLookupTable; drawableHeight: number; drawableWidth: number; ticks: YAxisTick[]; yScale: ScaleLinear; axis?: OptionalDualAxisYAxis; } export declare function YAxisAnnotations({ axis, annotationsLookupTable, drawableWidth, ticks, yScale, }: YAxisAnnotationsProps): JSX.Element; //# sourceMappingURL=YAxisAnnotations.d.ts.map