import { type SignTypedDataParameters, type Address } from 'viem';
import { COMBO_BET_DATA_TYPES } from '../config';
import { type BetClientData } from '../global';
type Props = {
    account: Address;
    minOdds: string | bigint;
    amount: string | bigint;
    nonce: string | bigint;
    clientData: BetClientData;
    bets: {
        conditionId: string | bigint;
        outcomeId: string | bigint;
    }[];
};
export declare const getComboBetTypedData: (props: Props) => SignTypedDataParameters<typeof COMBO_BET_DATA_TYPES>;
export {};
