import type { PointsArray } from "../../types";
type Point = PointsArray[number];
export type HorizontalBarRect = {
    x: number;
    y: number;
    width: number;
    height: number;
};
export declare const getHorizontalBarRect: (point: Point, baselineX: number, barThickness: number) => HorizontalBarRect | null;
export {};
