import type { FormatterWithPrecision, TimeFormatter } from '../../../types/formatter.js'; export declare const MARKER_VALUE_SEPARATOR = "\u2013"; type MarkerFormatter = FormatterWithPrecision | TimeFormatter; export declare function getMarkerValue(marker: { y0: number | Date; y1: number | Date; }, formatter?: MarkerFormatter): string; export {};