import type { Branch, Commit } from './git.js';
import type { Column, RequiredOptions } from './options.js';
import type { Drawable, Svg } from './svg.js';
type Table = Drawable & {
    columns: Column[];
    commits: Commit[];
    svg: Svg;
};
declare function getTable(idx: number, branchs: Branch[], options: RequiredOptions): Table;
export { getTable };
