/** * Representation of the 'ValidationError' schema. */ export type ValidationError = { loc: (string | number)[]; msg: string; type: string; input?: any; ctx?: Record; } & Record; //# sourceMappingURL=validation-error.d.ts.map