/** * Spectral layout algorithm using eigenvectors of the graph Laplacian */ import type { Graph, PositionMap } from "../../types"; /** * Position nodes in a spectral layout using eigenvectors of the graph Laplacian. * @param G - Graph * @param scale - Scale factor for positions * @param center - Coordinate pair around which to center the layout * @param dim - Dimension of layout * @param seed - Random seed for reproducible layouts * @returns Positions dictionary keyed by node */ export declare function spectralLayout(G: Graph, scale?: number, center?: number[] | null, dim?: number, seed?: number | null): PositionMap; //# sourceMappingURL=spectral.d.ts.map