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