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