import { XBetFootballMatch } from '../../typings/football'; import { XBetFootballLeague } from '../../typings/serve'; declare function getLive(id: string | number): Promise; declare function getLiveAll(params?: { team_id?: string | number; }): Promise; declare function getMatch(id: string | number): Promise; declare function getPreMatch(id: string | number): Promise; declare function getPreMatchAll(params?: { team_id?: string | number; }): Promise; declare function getPreMatchLeagues(): Promise; declare function getPreMatchLeagueMatches(league_id: string | number): Promise; declare function getLiveLeagues(): Promise; declare function getLiveLeagueMatches(league_id: string | number): Promise; declare function getInfo(): Promise<{ name: string; version: string; }>; declare const _default: { getLive: typeof getLive; getLiveAll: typeof getLiveAll; getLiveLeagues: typeof getLiveLeagues; getLiveLeagueMatches: typeof getLiveLeagueMatches; getPreMatch: typeof getPreMatch; getPreMatchAll: typeof getPreMatchAll; getPreMatchLeagues: typeof getPreMatchLeagues; getPreMatchLeagueMatches: typeof getPreMatchLeagueMatches; getMatch: typeof getMatch; getInfo: typeof getInfo; }; export default _default;