import { UserSession } from '@esri/arcgis-rest-auth'; import { IServiceUrlTemplate } from '@esri/templates-common'; /** * Given a set of Feature Service urls, return information * about those that can be templated * * In order to be templated, a Feature Service must be: * - hosted and backed by a Feature Service Item * - must not be part of the Living Atlas * * @export * @param {string[]} serviceUrls * @param {UserSession} session * @return {*} {Promise} */ export declare function getFeatureServiceUrlTemplates(serviceUrls: string[], session: UserSession): Promise;