import { IItem } from '../../types'; /** * Determines if the given item is a Feature Layer. * * @param item - The ArcGIS item to check. * @returns `true` if the item's type is "Feature Service", otherwise `false`. */ export declare const isFeatureService: (item: IItem) => boolean; /** * Determines if the given item is a Feature Table. * @param item - The ArcGIS item to check. * @returns `true` if the item is a Feature Table, otherwise `false`. */ export declare const isFeatureTable: (item: IItem) => boolean;