import { IObservable } from '../../../../../../../type/observable.type';
import { IFromFetchJSONObservableNotifications } from './from-fetch-json-observable-notifications.type';
/**
 * Uses the Fetch API to make an HTTP request, and returns a JSON object
 */
export declare function fromFetchJSON<GResult>(requestInfo: RequestInfo, requestInit?: RequestInit): IObservable<IFromFetchJSONObservableNotifications<GResult>>;
