import { AnalyzerGraph } from './types'; export declare const computeCompleteness: (g: AnalyzerGraph) => { kind: "incomplete"; } | { kind: "complete"; }; export declare const computePartiteness: (g: AnalyzerGraph) => { kind: "unrestricted"; } | { kind: "bipartite"; }; export declare const computeDensity: (g: AnalyzerGraph) => { kind: "unconstrained"; } | { kind: "sparse"; } | { kind: "dense"; }; //# sourceMappingURL=structure.d.ts.map