/**
 * http error
 *
 * @export
 * @class HttpError
 * @extends {Error}
 */
export declare class HttpError extends Error {
    status: number;
    constructor(status: number, message?: string | string[]);
    toString(): string;
    static ρAnn(): any;
}
