import { Point } from '../../../math/geometry/point'; export declare class SegWithIndex { Points: Point[]; I: number; constructor(pts: Point[], i: number); static equal(a: SegWithIndex, b: SegWithIndex): boolean; get Start(): Point; get End(): Point; }