import { HttpError } from './HttpError';
/**
 * internal server error.
 *
 * @export
 * @class InternalServerError
 * @extends {HttpError}
 */
export declare class InternalServerError extends HttpError {
    constructor(message?: string);
    static ρAnn(): any;
}
