import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
import { StructuredDocumentTag } from './structuredDocumentTag';
export declare const importsMapStructuredDocumentTagCollection: {
    LinkElement: typeof LinkElement;
    StructuredDocumentTag: typeof StructuredDocumentTag;
};
/**
 * DTO container with a collection of StructuredDocumentTags links.
 */
export declare class StructuredDocumentTagCollection extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of StructuredDocumentTags links.
     */
    list: Array<StructuredDocumentTag>;
    constructor(init?: Partial<StructuredDocumentTagCollection>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
