import type { z } from 'zod'; /** * Walks schema+data bottom-up, applying registered fix functions to produce * a new data object. Children are fixed before parents, so parent fixes * see the already-fixed child values. * * Applied during the save pipeline after producing changes but before * `fixRefDeletions`. * * Returns the original reference if no fixes were needed. */ export declare function applyDefinitionFixes(schema: z.ZodType, data: T): T; //# sourceMappingURL=apply-definition-fixes.d.ts.map