import { IUser, ValidationInfo } from '../../types'; /** * Validate an item owner's profile name * * Living Atlas specific (local): * - Cannot be empty * - Cannot contain prohibited character(s) * */ export declare const isValidUserProfileName: (userProfile: IUser) => ValidationInfo;