import type { MinMaxConfig } from '../../core/types/min-max-config.js'; import { MinMax } from '../../core/types/min-max.js'; import type { AxisScaleType } from '../../core/types/scales.js'; import type { CategoricalValueScales } from '../types/categorical-bar-chart.js'; /** * Get Categorical linear scale * @param axisBoundaries - min max domain * @param maxRange - max range, usually the hight or width of the chart * @param inverted - invert ranges * @param scale - The different scale the chart can set * @param configMinMax - Contains the min and max for the scale if the customer has set it. * @returns scaleLinear with correct properties */ export declare function getCategoricalValueScale(axisBoundaries: MinMax, maxRange: number, inverted?: boolean, scale?: AxisScaleType, configMinMax?: Partial): CategoricalValueScales;