import type { ReactNode } from 'react'; import { QueryClient } from '@tanstack/react-query'; declare type TQueryProviderProps = { children: ReactNode; }; declare const queryClient: QueryClient; declare function QueryProvider({ children }: TQueryProviderProps): JSX.Element; export { QueryProvider, queryClient };