import { Commit } from "../commit"; export declare class RegularGraphRows { protected rows: Map; private maxRowCache; constructor(commits: Array>); getRowOf(commitHash: Commit["hash"]): number; getMaxRow(): number; protected computeRowsFromCommits(commits: Array>): void; }