import { IItem, ValidationInfo, IUser } from '../../types'; /** * Validate an item owner's profile description * * Adding biographical information about helps others know more about the item owner, groups, and the content shared. * The profile can connect users with others who have similar interests and establish authority in geographic information, map design, app development, and so on. * It can also promote interest in joining groups and using maps and apps being shared. * It's useful to include contact information and areas of expertise and interests. * * Living Atlas specific * - Cannot be empty * - Has minimum number of words (10) * - Has minimum number of sentences (3) * - Should contain an email * - Should contain a link *
* * Living Atlas specific (international) * - Cannot be empty * - Should contain an email * - Should contain a link */ export declare const isValidUserProfileDescription: (userProfile: IUser, item: IItem) => ValidationInfo;