import { HttpStatus } from './http-status';
export declare class ResponseStatusError extends Error {
    readonly statusCode: HttpStatus;
    readonly message: string;
    constructor(statusCode: HttpStatus, message: string);
    static notFound(): ResponseStatusError;
}
