import { type UseQueryResult } from '@tanstack/react-query';
import { type ChainId, type Selection } from '@azuro-org/toolkit';
import { type QueryParameter } from '../../global';
export type UseMaxBetProps = {
    selections: Selection[];
    chainId?: ChainId;
    query?: QueryParameter<string>;
};
export type UseMaxBet = (props: UseMaxBetProps) => UseQueryResult<string>;
export declare const useMaxBet: UseMaxBet;
