import { IRequestOptions } from "@esri/arcgis-rest-request"; import { IItem } from "@esri/arcgis-rest-portal"; export interface IFetchItemOptions extends IRequestOptions { /** * Org key of the site for which this item is being fetched. * This is used as a fallback when looking up by a slug * that is missing the org key prefix. */ siteOrgKey?: string; } /** * Fetch an item by its identifier * @param identifier item id or slug, which may or may not include the org key * @param requestOptions */ export declare function fetchItem(identifier: string, requestOptions: IFetchItemOptions): Promise;