/** * Default configuration values for React Query and caching strategies */ export declare const QUERY_DEFAULTS: { /** How long data is considered fresh (1 minute) */ readonly STALE_TIME: 60000; /** Number of retry attempts for failed queries */ readonly RETRY_COUNT: 3; /** Enable refetch when window regains focus */ readonly REFETCH_ON_WINDOW_FOCUS: true; /** Enable refetch when network connection is restored */ readonly REFETCH_ON_RECONNECT: true; }; export declare const REFETCH_INTERVALS: { /** Bet requirements refetch interval (2 minutes) - depends on bankroll changes */ readonly BET_REQUIREMENTS: 120000; };