import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's "Credits (Attribution)", which provides Information on the source of the item and its copyright status. * A valid Access Information must meet these rules below: * * Living Atlas specific rule: * - Cannot be empty * - Only contains strings, no markup */ export declare const isValidAccessInformation: (item: IItem) => ValidationInfo;