import { Point } from '../../../math/geometry/point'; import { AxisEdge } from './AxisEdge'; export declare class AxisEdgesContainer { edges: Set; get Edges(): Iterable; UpPoint: Point; AddEdge(edge: AxisEdge): void; constructor(source: Point); Source: Point; RemoveAxis(edge: AxisEdge): void; IsEmpty(): boolean; }