import { type Selection } from '@azuro-org/toolkit';
export type UseSelectionOddsProps = {
    selection: Selection;
    initialOdds?: number;
};
export declare const useSelectionOdds: ({ selection, initialOdds }: UseSelectionOddsProps) => {
    data: number;
    isFetching: boolean;
};
