export type JsonValue = null | string | number | boolean | JsonValue[] | { [key: string]: JsonValue; }; export declare const queryKeyJsonReplacer: (_key: string, value: unknown) => {} | null | undefined; export declare const stringifyToJsonValue: (input: unknown) => JsonValue | undefined; export declare const serializeQueryKeyValue: (value: unknown) => JsonValue | undefined;