import { HttpException } from './http.exception'; /** * Exception for HTTP 405 Method Not Allowed errors */ export declare class MethodNotAllowedException extends HttpException { constructor(message?: string); }