import { type JSX } from "solid-js"; import type { QueryClient } from "./query-client.js"; export interface QueryProviderProps { client: QueryClient; children: JSX.Element; } /** * QueryProvider component that provides QueryClient to all children. */ export declare function QueryProvider(props: QueryProviderProps): JSX.Element; /** * Hook to access the QueryClient from context. */ export declare function useQueryClient(): QueryClient; //# sourceMappingURL=query-context.d.ts.map