import type { Scale } from "../../types";
export declare const getXAxisTicks: ({ isNumericalData, ix, tickCount, tickValues, xScale, }: {
    isNumericalData: boolean;
    ix: unknown[];
    tickCount: number;
    tickValues?: number[];
    xScale: Pick<Scale, "ticks">;
}) => number[];
