import { IWebmap } from '@esri/arcgis-rest-types'; /** * Extract the unique Feature Server urls from a WebMap * * Inspects each layer and table in the webmap, and returns * the unique set of Feature Server urls * * @export * @param {IWebmap} webmap * @return {*} {string[]} */ export declare function getUniqueServiceUrlsFromWebMap(webmap: IWebmap): string[];