export declare abstract class HttpError extends Error {
    readonly status: number;
    readonly activityId?: string | undefined;
    protected constructor(name: string, status: number, activityId?: string | undefined);
}
