import { year } from '../../Types';
import { Standing } from './Standing';
export declare class Standings {
    constructor(year: year, round?: number, limit?: number);
    pop: () => Promise<Standings>;
    protected year: year;
    protected round: number;
    protected limit: year;
    initialized: boolean;
    season: number;
    completedRounds: number;
    standings: Standing[];
}
