import { IItem } from "@esri/arcgis-rest-portal"; import { IRequestOptions } from "@esri/arcgis-rest-request"; /** * Given an item, and a list of resource name/prop pairs, * fetch the resources and return as an object for the IModel * * @export * @param {IItem} item * @param {{ * [key: string]: string * }} resourceNamePairs * @param {IRequestOptions} requestOptions * @return {*} {Promise>} */ export declare function fetchModelResources(item: IItem, resourceNamePairs: { [key: string]: string; }, requestOptions: IRequestOptions): Promise>;