import { Point } from '../../math/geometry/point'; import { LineSweeperBase } from './LineSweeperBase'; import { SegmentBase } from './SegmentBase'; export declare class ObstacleSideComparer { lineSweeper: LineSweeperBase; constructor(lineSweeper: LineSweeperBase); x: Point; Compare(a: SegmentBase, b: SegmentBase): number; SetOperand(side: SegmentBase): void; IntersectionOfSideAndSweepLine(obstacleSide: SegmentBase): Point; }