export declare class ConnectionError { /** * Verifies if an Error is a connection error * @param err error * @returns true if the error was caused by ETIMEDOUT or ECONNRESET or ECONNABORTED */ static isConnectionError(err: unknown): err is Error & { code: string; }; }