import { IItem } from '../../types'; /** * This helpers checks if the user profile description contains phrases indicating that the account is managed by Esri * It only checks for items owned by Esri official accounts to avoid false positives. * * @param userProfileDescription description text from user profile * @param item ArcGIS item to check ownership * @returns boolean indicating if the description contains managed by Esri phrases */ export declare const containsManagedByEsriPhrases: (userProfileDescription: string, item: IItem) => boolean;