import { UserSession } from '@esri/arcgis-rest-auth'; import { IServiceUrlTemplate } from '@esri/templates-common'; /** * Given a Feature Service url, get the ServiceInfo to * determine if the Service is associated with an Item, * and if so, get the item to determine if that is * associated with Living Atlas * * This function uses `failSafe` calls, so it will always * resolve * * @export * @param {string} serviceUrl * @param {UserSession} session * @return {*} {Promise} */ export declare function getFeatureServiceUrlTemplate(serviceUrl: string, session: UserSession): Promise;