import type { Point } from '../../../types'; /** * Determine if ab and cd intersect * @param a line 1 start * @param b line 1 end * @param c line 2 start * @param d line 2 end */ export declare function getIsIntersection(a: Point, b: Point, c: Point, d: Point): boolean;