import { AttributeInfo } from '../internal/attributeInfo'; import { StructuredDocumentTagCollection } from './structuredDocumentTagCollection'; import { WordsResponse } from './wordsResponse'; export declare const importsMapStructuredDocumentTagsResponse: { StructuredDocumentTagCollection: typeof StructuredDocumentTagCollection; WordsResponse: typeof WordsResponse; }; /** * The REST response with a collection of StructuredDocumentTags. * This response should be returned by the service when handling: GET /structuredDocumentTags. */ export declare class StructuredDocumentTagsResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of StructuredDocumentTags. */ structuredDocumentTags: StructuredDocumentTagCollection; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }