export type BetStatus = 'pending_accept' | 'active' | 'pending_confirm' | 'resolved' | 'disputed' | 'cancelled';
export declare class Bet {
    id: number;
    guildId: string;
    creatorId: string;
    opponentId: string;
    description: string;
    stakeAmount: number;
    status: BetStatus;
    proposedWinnerId: string | null;
    creatorConfirmed: boolean;
    opponentConfirmed: boolean;
    winnerId: string | null;
    resolvedBy: string | null;
    createdAt: Date;
    expiresAt: Date | null;
    resolvedAt: Date | null;
}
//# sourceMappingURL=Bet.d.ts.map