import type { GraphQLError } from 'graphql'; import type { JSONValue, FieldMeta } from "../../types/index.js"; import type { DataGetter } from "./dataGetter.js"; export type ItemData = { id: string; [key: string]: any; }; export type DeserializedValue = Record; export declare function deserializeValue(fields: Record, itemGetter: DataGetter): DeserializedValue; export declare function serializeValueToObjByFieldKey(fields: Record, value: DeserializedValue): Record>; //# sourceMappingURL=serialization.d.ts.map