import type { DefaultError, QueryKey } from '@tanstack/react-query'; import type { RefetchIntervalFunction } from '../types/refetch-interval'; export interface ProgressiveRefetchOptions { minInterval: number; maxInterval: number; multiplier?: number; } export declare const getProgressiveRefetch: ({ minInterval, maxInterval, multiplier, }: ProgressiveRefetchOptions) => RefetchIntervalFunction;