import Ajv from 'ajv'; declare const ajv: Ajv; export { ajv }; type BadRequestErrorResponse = { success: false; error?: string; errorType?: string; stack?: string; details?: string | object; }; export declare const validateBadRequestErrorResponse: import("ajv").ValidateFunction; type UnauthorizedErrorResponse = { success: false; status?: string; message?: string; error?: string; errorType?: string; }; export declare const validateUnauthorizedErrorResponse: import("ajv").ValidateFunction; type ForbiddenErrorResponse = { success: false; status?: string; message?: string; error?: string; errorType?: string; }; export declare const validateForbiddenErrorResponse: import("ajv").ValidateFunction; type NotFoundErrorResponse = { success: false; error: string; }; export declare const validateNotFoundErrorResponse: import("ajv").ValidateFunction; //# sourceMappingURL=Ajv.d.ts.map