import { type ReactNode } from 'react'; import type { SparklineThresholdProps } from '../types/sparkline-thresholds-props.js'; import { SparklineXAxisInternalProps } from '../types/sparkline-x-axis-props.js'; import type { SparklineYAxisProps } from '../types/sparkline-y-axis-props.js'; export interface SparklineConfig { thresholds: SparklineThresholdProps[]; xAxis: SparklineXAxisInternalProps; yAxis: SparklineYAxisProps; } export declare function iterateSparklineSlots(children: ReactNode): SparklineConfig;