import { GeomEdge, ICurve, Rectangle } from '..'; export declare class PreGraph { edges: Array; nodeBoundaries: Set; boundingBox: Rectangle; static constructorStatic(egs: GeomEdge[], nodeBoundaries: Set): PreGraph; AddGraph(a: PreGraph): void; AddNodeBoundary(curve: ICurve): void; }