import { CustomError } from './custom-error';
export declare class RequestValidationWithMessageError extends CustomError {
message: string;
constructor(message: string);
setStatusCode(statusCode: number): void;
serializeErrors(): {
message: string;
}[];
}