declare const errors: { default: { description: string; content: { 'application/json': { example: { status: number; message: string; }; schema: { $ref: string; }; }; }; }; 400: { description: string; content: { 'application/json': { example: { status: number; message: string; }; schema: { $ref: string; }; }; }; }; 404: { description: string; content: { 'application/json': { example: { status: number; message: string; }; schema: { $ref: string; }; }; }; }; 409: { description: string; content: { 'application/json': { example: { status: number; message: string; }; schema: { $ref: string; }; }; }; }; 422: { description: string; content: { 'application/json': { example: { status: number; message: string; }; schema: { $ref: string; }; }; }; }; }; export default errors;