export interface HttpError extends Error { statusCode: number; } export interface APIError extends HttpError { correlationId?: string; } export declare function isApiError(x: any): x is APIError; export declare function apiErrorFromResponse(response: Response): Promise;