import type { z } from 'zod'; import type { ResolvedZodRefPayload } from './types.js'; /** * Deserialize a schema with references using the new transform-based approach. * This function converts human-readable names back to entity IDs. * * @template T - The Zod schema type * @param schema - The already-constructed Zod schema * @param input - The input data with names instead of IDs * @returns The resolved payload with IDs instead of names */ export declare function deserializeSchemaWithTransformedReferences(schema: T, input: unknown): ResolvedZodRefPayload>; //# sourceMappingURL=deserialize-schema.d.ts.map