import * as Types from './types';
export type ConditionQueryVariables = Types.Exact<{
    id: Types.Scalars['ID']['input'];
}>;
export type ConditionQuery = {
    __typename?: 'Query';
    condition?: {
        __typename?: 'Condition';
        id: string;
        conditionId: string;
        state: Types.ConditionState;
        title?: string | null;
        isExpressForbidden: boolean;
        isPrematchEnabled: boolean;
        isLiveEnabled: boolean;
        margin: string;
        outcomes: Array<{
            __typename?: 'Outcome';
            title?: string | null;
            outcomeId: string;
            odds: string;
        }>;
        game: {
            __typename?: 'Game';
            gameId: string;
            sport: {
                __typename?: 'Sport';
                sportId: string;
            };
        };
    } | null;
};
export declare const ConditionDocument: import("graphql/language/ast").DocumentNode;
