import { CustomError } from './custom-error';
export declare class RequestValidationErrorAsArray extends CustomError {
message: string;
errors: any;
constructor(message: string, errors: any);
setStatusCode(statusCode: number): void;
serializeErrors(): any;
}