import { TimeseriesPerVariant } from '../types/timeseries.js'; interface XAxisRange { min: number; max: number; } /** * Extract the xAxisMin and the xAxisMax of a given timeseries in a given chartVariant. * * @param series - given TimeseriesPerVariant * @returns - the minimum and maximum timestamp or x-axis value of a series */ export declare function getXAxisRange(series: TimeseriesPerVariant): XAxisRange; export {};