export interface ILeague {
code: string;
name: string;
type: 'LEAGUE' | 'LEAGUE_CUP' | 'CUP' | 'PLAYOFFS';
}
export declare const leagueCodes: ILeague[];
export declare const getLeagueByName: (name: string) => ILeague;
export declare const getLeagueByCode: (code: string) => ILeague;