import { ConditionState, type GameMarkets } from '@azuro-org/toolkit';
type Props = {
    states: Record<string, ConditionState>;
    marketsByKey: Record<string, GameMarkets[0]>;
    sortedMarketKeys: string[];
    activeMarketKey: string;
};
export declare const findActiveCondition: ({ states, marketsByKey, sortedMarketKeys, activeMarketKey }: Props) => {
    nextMarketKey: string;
    nextConditionIndex: number;
} | {
    nextMarketKey?: undefined;
    nextConditionIndex?: undefined;
};
export {};
