import { FinalRequestOptions, CrossPlatformResponse } from 'types';
import { BaseFetch } from './BaseFetch';
import { Stream } from '../streaming';
export declare class NodeFetch extends BaseFetch {
    call(url: string, options: FinalRequestOptions): Promise<CrossPlatformResponse>;
    handleStream<T>(response: CrossPlatformResponse): Stream<T>;
}
