import type { QueryKey, QueryOptions } from "./types.js"; /** * Serializes a query key to a string for consistent lookups. * Handles object key order normalization. */ export declare function serializeQueryKey(queryKey: QueryKey): string; /** * Checks if a query key matches another (supports partial matching). * For partial matching, the target key should be a prefix of the query key. */ export declare function matchesQueryKey(queryKey: QueryKey, targetKey: QueryKey): boolean; /** * Gets default query options with all required fields filled in. */ export declare function getDefaultQueryOptions(options: QueryOptions, defaultOptions?: Partial, "queryKey" | "queryFn">>): Required>; //# sourceMappingURL=utils.d.ts.map