import { type ChainId } from '../config';
import { type Selection } from '../global';
export type GetMaxBetResponse = {
    response: {
        maxBet: string;
        maxPayout: string;
    };
};
type Props = {
    chainId: ChainId;
    selections: Selection[];
};
export declare const getMaxBet: (props: Props) => Promise<{
    maxBet: string;
    maxPayout: string;
} | null>;
export {};
