import type { PointsArray } from "../../types";
export type GetBarThicknessArgs = {
    axisStart: number;
    axisEnd: number;
    points: PointsArray | PointsArray[];
    innerPadding: number;
    customBarThickness?: number;
    barCount?: number;
};
export declare const getBarThickness: ({ axisStart, axisEnd, points, innerPadding, customBarThickness, barCount, }: GetBarThicknessArgs) => number;
