/** * Check if 2 lines intersect (cross each other) * - NB. 2 lines sharing one endpoint DO NOT intersect */ import { IPoint } from './i-point'; export declare function intersect(lineA: [IPoint, IPoint], lineB: [IPoint, IPoint]): boolean;