import { z } from 'zod'; /** * The shape of the model inside the application code - what the users use */ export declare const error: z.ZodObject<{ description: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; }, { description?: string | undefined; }>; /** * * @typedef {Error} error * @property {string} - a human-readable explanation specific to this occurrence of the problem. */ export type Error = z.infer; /** * The shape of the model mapping from the api schema into the application shape. * Is equal to application shape if all property names match the api schema */ export declare const errorResponse: z.ZodEffects; }, "strip", z.ZodTypeAny, { description?: string | undefined; }, { description?: string | undefined; }>, { description: string | undefined; }, { description?: string | undefined; }>; /** * The shape of the model mapping from the application shape into the api schema. * Is equal to application shape if all property names match the api schema */ export declare const errorRequest: z.ZodEffects>; }, "strip", z.ZodTypeAny, { description?: string | null | undefined; }, { description?: string | null | undefined; }>, { description: string | null | undefined; }, { description?: string | null | undefined; }>; //# sourceMappingURL=error.d.ts.map