import type { ChartBounds } from "../../types";
export declare const getXAxisLabelPosition: ({ tickPosition, labelWidth, chartBounds, }: {
    tickPosition: number;
    labelWidth: number;
    chartBounds: Pick<ChartBounds, "left" | "right">;
}) => {
    canRenderLabel: boolean;
    labelX: number;
    labelCenterX: number;
};
