import { AttributeInfo } from '../internal/attributeInfo'; import { DocumentProperty } from './documentProperty'; import { LinkElement } from './linkElement'; export declare const importsMapDocumentProperties: { DocumentProperty: typeof DocumentProperty; LinkElement: typeof LinkElement; }; /** * The collection of document properties. */ export declare class DocumentProperties extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of document properties. */ list: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }