import type { XYChartAxisInternal, XYChartSlots, XYChartThresholdsInternal } from '../../types/xy-chart-internals.js'; import type { XYChartXAxisPosition, XYChartYAxisPosition } from '../../types/xy-chart.js'; type BuildThresholds = (yAxes: { id: XYChartAxisInternal['id']; position: XYChartYAxisPosition; type: XYChartAxisInternal['type']; }[], xAxes: { id: XYChartAxisInternal['id']; reversed?: XYChartAxisInternal['reversed']; position: XYChartXAxisPosition; type: XYChartAxisInternal['type']; }[], thresholdSlots: XYChartSlots['thresholds']) => XYChartThresholdsInternal; export declare const buildThresholds: BuildThresholds; export {};