import type { RequestInit } from 'node-fetch'; declare type Options = RequestInit & { apiUrl: string; json?: boolean; token: string; }; export default function fetch({ apiUrl, body, headers, json, method, token, }: Options): Promise; export {};