/** * A simplified wrapper around global.fetch() that returns JSON by default * and sets the Content-Type to `application/json` */ declare const fetchJSON: (url: string, options?: RequestInit) => Promise; export default fetchJSON;