import React from 'react'; import { QueryClient } from '@tanstack/react-query'; declare const getDefaultQueryClient: () => QueryClient; export type QueryProviderProps = { children: React.ReactNode; client?: QueryClient; }; declare const QueryProvider: React.FC; export default QueryProvider; export { getDefaultQueryClient };