/*! * Copyright (c) 2020 Ville de Montreal. All rights reserved. * Licensed under the MIT license. * See LICENSE file in the project root for full license information. */ /** * Tells if the submitted error is transient or not. * A transient error can be retried * @param [statusCode] the http status code returned in the response * @param [code] the error code of a native Node exception. */ export declare function isTransientHttpError(statusCode?: number, code?: string): boolean;