import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's summary * * ArcGIS Online specific rules: * - Cannot contain `<` or `>` (ArcGIS Online defined) * * Living Atlas specific rules: * - Cannot be empty * - Cannot contain prohibited characters or strings ("_", "copy", "demo", "test", "eval") * - Must have 10 or more words * * Living Atlas specific (international) rules: * - Must contain a string of any length * */ export declare const isValidSummary: (item: IItem, prohibitedList?: RegExp[]) => ValidationInfo;