import { ConditionState, type GameMarkets } from '@azuro-org/toolkit';
export type UseActiveMarketProps = {
    markets: GameMarkets;
};
export declare const useActiveMarket: ({ markets }: UseActiveMarketProps) => {
    data: {
        states: Record<string, ConditionState>;
        marketsByKey: Record<string, import("@azuro-org/toolkit").Market>;
        activeMarketKey: string;
        activeConditionIndex: number;
        otherMarkets: string[];
        sortedMarketKeys: string[];
    };
    isFetching: boolean;
};
