import { Line } from '../Line';
import { Point } from '../Point';
/**
 * 获取2条直线的交点（若不相交则返回null）
 * @param line1 直线1
 * @param line2 直线2
 * @returns 交点
 */
export declare function getLineIntersection(line1: Line, line2: Line): Point;
