import * as Types from './types';
export type SportsNavigationQueryVariables = Types.Exact<{
    sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
}>;
export type SportsNavigationQuery = {
    __typename?: 'Query';
    sports: Array<{
        __typename?: 'Sport';
        id: string;
        slug: string;
        name: string;
        sportId: string;
        activeGamesCount: number;
        activeLiveGamesCount: number;
        activePrematchGamesCount: number;
        sporthub: {
            __typename?: 'SportHub';
            id: string;
            slug: string;
        };
    }>;
};
export declare const SportsNavigationDocument: import("graphql/language/ast").DocumentNode;
