import * as Types from '../types';
export type GameInfoFragment = {
    __typename?: 'Game';
    id: string;
    gameId: string;
    slug: string;
    title: string;
    startsAt: string;
    state: Types.GameState;
    turnover: string;
    sport: {
        __typename?: 'Sport';
        sportId: string;
        slug: string;
        name: string;
        sporthub: {
            __typename?: 'SportHub';
            id: string;
            slug: string;
        };
    };
    league: {
        __typename?: 'League';
        id: string;
        slug: string;
        name: string;
    };
    country: {
        __typename?: 'Country';
        id: string;
        slug: string;
        name: string;
    };
    participants: Array<{
        __typename?: 'Participant';
        image?: string | null;
        name: string;
    }>;
};
export declare const GameInfoFragmentDoc: import("graphql/language/ast").DocumentNode;
