import { FastNewmanOptions } from '@/interfaces/fast-newman-options.interface';
import { FastNewmanResult } from '@/interfaces/fast-newman-result.interface';
export declare class FastNewman {
    private options;
    private history;
    constructor(options?: FastNewmanOptions);
    fit(adjacencyMatrix: number[][]): Promise<FastNewmanResult>;
    private computeInitialModularity;
    private extractCommunities;
}
