import "isomorphic-fetch"; import { IFetchApiResponse } from "./core"; /** The Fetch Api executor, calls fetch and handle the response */ export declare function fetchApi(url: string, init?: RequestInit, jsonModifier?: (payload: any, status?: number) => R): Promise>;