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