/** * * @param url * @returns true if the url is of a map or feature service */ export declare const isMapOrFeatureServerUrl: (url: string) => boolean; /** * parses map or feature service type from URL * @param url map or feature service URL * @returns item type, either "Map Service" or "Feature Service" * or undefined for other types of URLs */ export declare const getServiceTypeFromUrl: (url: string) => string;