import { ScaleLinear, ScaleSymLog } from 'd3-scale'; import type { SparklineYAxisProps } from '../types/sparkline-y-axis-props.js'; export declare const getSparklineYScale: (domainValues: { min: number; max: number; }, height: number, yAxis: SparklineYAxisProps, isBarVariant?: boolean) => ScaleLinear | ScaleSymLog;