import type { Point } from '../../types'; /** * 计算线段长度 */ export declare function lineLen([x1, y1]: Point, [x2, y2]: Point): number;