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