import type { ReactNode } from 'react'; declare type TQueryProviderProps = { children: ReactNode; }; declare function QueryProvider({ children }: TQueryProviderProps): JSX.Element; export { QueryProvider };