import type { Point } from '../types'; export declare const modifyConnectingLine: ({ textBox, connectingLineToTextBoxCenter, }: { textBox: { width: number; height: number; } | null; connectingLineToTextBoxCenter: [Point, Point]; }) => Point[];