export interface PageRankOptions {
    beta?: number;
    maxIterations?: number;
    tolerance?: number;
}
