import { type Selection } from '@azuro-org/toolkit';
export type UseOddsProps = {
    selections: Selection[];
};
export declare const useOdds: ({ selections }: UseOddsProps) => {
    data: {
        odds: Record<string, number>;
        totalOdds: number;
    };
    isFetching: boolean;
};
