import { type GameQuery, type ChainId } from '@azuro-org/toolkit';
import { type UseQueryResult } from '@tanstack/react-query';
import { type QueryParameter } from '../../global';
export type UseGameProps = {
    gameId: string;
    chainId?: ChainId;
    query?: QueryParameter<GameQuery['game']>;
};
export type UseGame = (props: UseGameProps) => UseQueryResult<GameQuery['game']>;
export declare const useGame: UseGame;
