/** * React hook that returns the QueryCacheClient module instance to control query cache. * * How to enable query cache see in [Query Caching guide](/guides/sdk/guides/client-query-caching.html) * * @returns QueryCacheClient instance * @group Queries * * @beta */ export declare function useQueryCache(): { clear: () => void; } | undefined;