import { ColorLegendElement } from "./color-legend-element"; import { XScale } from "./types"; /** handles configuring the x-scale and x-axis for non-categorical legends * @ignore - for custom-elements.json */ export declare class AxisTicksSetter { cle: ColorLegendElement; xScale: XScale; constructor(cle: ColorLegendElement); /** * Sets the xScale property based on the value of the scaleType property */ setXScale(): void; /** * Handles setting fallback axis tick values for discrete & threshold scales * Handles setting the tickFormatter function */ handleAxisTicks(): void; } //# sourceMappingURL=x-scale-axis.d.ts.map