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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of document properties.
     */
    list: Array<DocumentProperty>;
    constructor(init?: Partial<DocumentProperties>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
