import type { DefaultError, Query, QueryKey } from '@tanstack/react-query'; export type RefetchIntervalFunction = (query: Query, count: number) => number | false | undefined; export type RefetchInterval = number | false | RefetchIntervalFunction;