import type { z } from 'zod'; export type ZodIssueWithContext = z.ZodIssue & { parentObj: unknown; humanReadable: string; }; export type ZodParseWithContextResult = { errors: ZodIssueWithContext[]; humanReadable: string; } & ({ success: true; safe: z.infer; } | { success: false; safe?: never; }); export declare function zodParseWithContext(schema: T, obj: unknown): ZodParseWithContextResult; //# sourceMappingURL=zodParseWithContext.d.ts.map