import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's description. A valid description must meet these rules below: * * ArcGIS Online specific rules: * - ArcGIS Online permits this field to be left emtpy. This field supprts markup. * * Living Atlas specific rule: * - Cannot be empty * - Must contain at least one link * - Must have 48 or more words * - Should contains "Data Source", "Source" or other similar key words that describe the source of the data. * * Living Atlas specific rules (international): * - Cannot be empty * - Must contain at least one link * */ export declare const isValidDescription: (item: IItem) => ValidationInfo;