import { HttpError } from './HttpError';
/**
 * method not allowed error.
 *
 * @export
 * @class MethodNotAllowedError
 * @extends {HttpError}
 */
export declare class MethodNotAllowedError extends HttpError {
    constructor(message?: string);
    static ρAnn(): any;
}
