import type { z } from 'zod'; import type { ResolvedZodRefPayload } from './types.js'; export declare function serializeSchemaFromRefPayload(payload: ResolvedZodRefPayload): TValue; /** * Serializes a schema value by: * 1. Parsing the input with Zod (populating defaults) * 2. Stripping values that match their registered defaults * 3. Extracting and resolving entity/reference metadata * 4. Replacing entity IDs with their human-readable names */ export declare function serializeSchema(schema: T, value: unknown): z.output; //# sourceMappingURL=serialize-schema.d.ts.map