export interface RequestInit { method?: 'POST' | 'GET'; headers?: Record; body?: Buffer | string; } export declare function fetch(url: string, init?: RequestInit): Promise; //# sourceMappingURL=fetch.d.ts.map