import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's title. A Valid title must meet these rules below: * * ArcGIS Online specific rules: * - Cannot be empty * - Minimum length: 1 character * - Maximum length: 250 characters * - Cannot contain `<` or `>` (ArcGIS Online defined) * * Living Atlas specific rules: * - Cannot be all uppercase * - Cannot contain prohibited characters or strings ("_", "copy", "demo", "test", "eval") * - Contain more than one word * * Living Atlas specific rules (international): * - Must contain a string of any length * * @param item * @param prohibitedList * @returns */ export declare const isValidTitle: (item: IItem, prohibitedList?: RegExp[]) => ValidationInfo;