import Table from 'cli-table3';
import { IStandingJson, Standing } from '../models';
import { BaseTableBuilder } from './BaseTableBuilder';
export declare class StandingsTableBuilder extends BaseTableBuilder<IStandingJson, Standing> {
buildTableHeader(): Table.HorizontalTable;
}