export declare class HttpError extends Error {
    status?: number;
    statusText?: string;
    constructor(message: string, status?: number, statusText?: string);
}
