import type { QueryKey, UseQueryOptions } from '@tanstack/react-query'; /** * This utility type allows the `queryKey` to be optional, as the custom hook may provide a default `queryKey` internally. * * If the `queryKey` is not provided, the default `queryKey` will be used. */ export interface CustomUseQueryOptions { options?: Omit, 'queryKey'> & { queryKey?: QueryKey; }; } //# sourceMappingURL=react-query.d.ts.map