export interface BetDetailsParams {
    betId: string;
}
export interface BetDetails {
    bettor: string;
    amount: string;
    odds: string;
    payout: any;
    result: string | null;
    status: string;
    type: string;
    settledOdds: any;
    betId: string;
    potentialPayout: string;
    createdBlockTimestamp: string;
    _lostSubBetsCount: number;
    _subBetsCount: number;
    _updatedAt: string;
    _conditions: Condition[];
    selections: Selection[];
    _games: Game[];
    _conditionIds: string[];
}
interface Condition {
    conditionId: string;
    coreAddress: string;
    game: Game;
}
interface Game {
    league: League;
    title: string;
    startsAt: string;
}
interface League {
    name: string;
}
interface Selection {
    _outcomeId: string;
    odds: string;
}
export {};
