import { GameState } from '@azuro-org/toolkit';
import { type LiveStatistics } from '../../contexts/liveStatisticsSocket';
export type UseLiveStatisticsProps = {
    gameId: string;
    sportId: number | string;
    gameState: GameState;
    enabled?: boolean;
};
export declare const useLiveStatistics: ({ gameId, sportId, gameState, enabled }: UseLiveStatisticsProps) => {
    data: LiveStatistics | null | undefined;
    isFetching: boolean;
    isAvailable: boolean;
};
