export declare function getLabelCoords(x1: number, // source anchor x
y1: number, // source anchor y
x2: number, // target anchor x
y2: number, // target anchor y
width: number, // label width
height: number, // label height
GRID_SIZE: number): {
    x: number;
    y: number;
    aligment: CanvasTextAlign;
};
