import { IFixtureJson, IStandingsJson, ITeamJson, Team } from './models'; import { IScorersResponseJson } from './models/Scorer'; export declare function getMatchday(leagueCode: string): Promise; export declare function getTeam(teamId: number): Promise; export declare function getTeamFixtures(team: Team): Promise; export declare function getCompetitionTeams(leagueCode: string): Promise; export declare function getStandings(leagueCode: string): Promise; export declare function getTeamId(teamName: string, leagueCode: string): Promise; export declare function getScorers(leagueCode: string): Promise;