import * as Types from './types';
export type ConditionsQueryVariables = Types.Exact<{
    where: Types.Condition_Filter;
    orderBy?: Types.InputMaybe<Types.Condition_OrderBy>;
    orderDirection?: Types.InputMaybe<Types.OrderDirection>;
}>;
export type ConditionsQuery = {
    __typename?: 'Query';
    conditions: Array<{
        __typename?: 'Condition';
        wonOutcomeIds?: Array<string> | null;
        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 ConditionsDocument: import("graphql/language/ast").DocumentNode;
