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