import { SbobetFootballMatch } from '../../typings/football'; import { SbobetFootballLeagueInfo } from '../../typings/serve'; declare function getLive(id: string | number): Promise; declare function getLiveAll(): Promise; /** live or prematch * */ declare function getMatch(id: string | number): Promise; declare function getPreMatch(id: string | number): Promise; declare function getPreMatchAll(): 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;