import { IItem } from '../../types'; export declare const isMapService: (item: IItem) => boolean; /** * Check if a Map Service item is a Tiled Map Service by looking for the "Tiled" type keyword. * @param item ArcGIS item to check * @returns boolean indicating whether the item is a Tiled Map Service */ export declare const isTiledMapService: (item: IItem) => boolean;