import { RectDataPoint } from '../../../types/data-point.js'; import { Line } from '../../../types/line.js'; export type RectLimits = { drawableTop: boolean; drawableRight: boolean; drawableBottom: boolean; drawableLeft: boolean; }; /** * Returns the perimeter lines of a rectangle, omitting lines that touch chart edges with axes. */ export declare const getRectPerimeterLines: (point: RectDataPoint, chartWidth: number, chartHeight: number, limitations: RectLimits) => Line[];