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