import type { DateThresholdData, NumericalThresholdData } from '../../../../core/types/thresholds.js'; import type { XYChartThresholdIndicatorProps, XYChartThresholdDynamicProps } from '../../../../xy-chart/types/xy-chart-props.js'; export type AxisEntry = { position: 'left' | 'right'; axisId: string; }; interface ThresholdInput { data: DateThresholdData | NumericalThresholdData; color: string; label?: string; strokeOnly?: boolean; position?: 'left' | 'right'; } export declare function reduceThresholdsToXY(thresholds: ThresholdInput[], axisEntries: AxisEntry[], xAxisId: string, mapDynamic: (data: DateThresholdData | NumericalThresholdData) => XYChartThresholdDynamicProps['data'] | null): XYChartThresholdIndicatorProps[]; export {}; //# sourceMappingURL=reduce-thresholds-to-xy.d.ts.map