import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's sharing. An item is required to be shared with the public before it can be nominated for inclusion in the Living Atlas. * * When adding a item to ArcGIS Online, you have the option of leaving it unshared or, * depending on your sharing privileges and the security settings of your organization, sharing items with groups, your * organization, or everyone. * * You can also share an item with a combination of your organization, groups, and everyone. * * If you choose not to share the item, only you (and organization members with privileges to view content owned by * other members) can access the item until you share it. Until they are shared, your maps, apps, and other items are * not available to others—for example, they do not appear in search results and aren't part of any group. * * Living Atlas specific: * - Must be public * * Living Atlas specific (international) * - Must be public * */ export declare const isValidAccess: (item: IItem) => ValidationInfo;