import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's `protected` property. An item is required to have **Delete Protection** enabled before it can be nominated for inclusion in the Living Atlas. * * In ArcGIS Online, the user has the option to turn on **Delete Protection** to prevent this item from being accidentally deleted. * * Living Atlas specific: * - Must have **Delete Protection** turned on */ export declare const isDeleteProtectionEnabled: (item: IItem) => ValidationInfo;