import { TestGraph } from '../generation/generators/types'; import { PropertyValidationResult } from './types'; /** * Validates scale-free graph property. * Scale-free graphs have power-law degree distribution P(k) ~ k^(-γ). * @param graph */ export declare const validateScaleFree: (graph: TestGraph) => PropertyValidationResult; /** * Validates small-world graph property. * Small-world graphs have high clustering coefficient + short average path length. * @param graph */ export declare const validateSmallWorld: (graph: TestGraph) => PropertyValidationResult; /** * Validates modular graph property (community structure). * Modular graphs have high modularity score Q. * @param graph */ export declare const validateModular: (graph: TestGraph) => PropertyValidationResult; //# sourceMappingURL=network.d.ts.map