import * as Types from '../types';
export type ConditionFragment = {
    __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;
        };
    };
};
export declare const ConditionFragmentDoc: import("graphql/language/ast").DocumentNode;
