import { z } from "zod"; /** One zod issue distilled to its path + message. */ export interface ZodIssueSummary { path: string; message: string; } /** Flatten a ZodError into a structured list. `path` is dot-joined; the root path renders as `(root)`. */ export declare function zodIssuesOf(err: z.ZodError): ZodIssueSummary[]; /** Render a ZodError as the indented ` - path: message` list used in error messages. */ export declare function formatZodIssues(err: z.ZodError): string; //# sourceMappingURL=zod-issues.d.ts.map