import { InfraError } from './InfraError';
export declare class HttpError extends InfraError {
    readonly statusCode: number;
    constructor(message: string, statusCode?: number);
}
