import type { ScaleLinear, ScaleLogarithmic, ScaleSymLog, ScaleTime } from 'd3-scale'; import type { AnnotationsMarkerConfig } from '../types/annotations-marker-props.js'; export type AnnotationsScale = ScaleTime | ScaleLinear | ScaleLogarithmic | ScaleSymLog; export declare const calculateMarkerDimension: (marker: AnnotationsMarkerConfig, scale: AnnotationsScale) => { x: number; width: number; }; //# sourceMappingURL=calculate-marker-dimension.d.ts.map