import { Point } from '.'; /** An unordered pair of points */ export declare class PointPair { _first: Point; _second: Point; constructor(first: Point, second: Point); get first(): Point; get second(): Point; get Length(): number; CompareTo(other: PointPair): number; static equal(pair0: PointPair, pair1: PointPair): boolean; toString(): string; }