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