import { IItem } from '../../types'; /** * Determines if the given item is a type of layer supported by the Living Atlas. * * This function checks the `type` property of the provided item to see if it matches any * of the supported layer types, such as 'Feature Service', 'Image Service', 'Map Service', * 'Vector Tile Service', 'WMS', 'Group Layer', 'Scene Service', or 'Media Layer'. * * @param item - The item to check, which includes a `type` property that specifies its item type. * @returns A boolean indicating whether the item is a supported layer type. */ export declare const isLayer: (item: IItem) => boolean;