import type { PointsArray } from "../../types";
import type { VerticalBarRect } from "./getVerticalBarRect";
type Point = PointsArray[number];
export declare const getVerticalBarGroupRect: ({ point, baselineY, barWidth, groupWidth, gapWidth, barIndex, }: {
    point: Point;
    baselineY: number;
    barWidth: number;
    groupWidth: number;
    gapWidth: number;
    barIndex: number;
}) => VerticalBarRect | null;
export {};
