import { RequestInit } from 'node-fetch'; export declare function fetch(url: string, config?: RequestInit): Promise; export declare function postFetch(url: string, data?: Record): Promise; export declare function fetchStream(url: any, config?: Record): Promise;