import { Response as FetchResponse } from 'node-fetch'; export default abstract class BaseConnection { protected isNode(): boolean; protected fetch(url: string, options: { body?: string; headers?: Record; method?: string; }): Promise; }