import { type Address, type Hex } from 'viem';
import { type CreateBetResponse, type BetClientData } from '../global';
type Props = {
    account: Address;
    amount: string | bigint;
    minOdds: string | bigint;
    nonce: string | number | bigint;
    clientData: BetClientData;
    bets: {
        conditionId: string | bigint;
        outcomeId: string | number | bigint;
    }[];
    signature: Hex;
    bonusId?: string;
};
export declare const createComboBet: (props: Props) => Promise<CreateBetResponse | null>;
export {};
