import { ApiQueryProviderProps } from "./types.js"; //#region src/api/ApiQueryProvider/ApiQueryProvider.d.ts /** * Provides a `QueryCache` instance to React API hooks through React context. * * Use this when a subtree should receive a cache directly instead of reading it * from `GlobalContext` via `installApiCache`. * * @param props - Provider props. * @param props.queryCache - Cache created by `createQueryCache()`. * @param props.children - React subtree that can call `useApiQueryCache()`. * * @example * ```tsx * const queryCache = createQueryCache(); * * * * * ``` */ declare function ApiQueryProvider(props: ApiQueryProviderProps): import("react").JSX.Element; //#endregion export { ApiQueryProvider }; //# sourceMappingURL=ApiQueryProvider.d.ts.map