import { AttributeInfo } from '../internal/attributeInfo'; import { StructuredDocumentTag } from './structuredDocumentTag'; import { WordsResponse } from './wordsResponse'; export declare const importsMapStructuredDocumentTagResponse: { StructuredDocumentTag: typeof StructuredDocumentTag; WordsResponse: typeof WordsResponse; }; /** * The REST response with a StructuredDocumentTag. */ export declare class StructuredDocumentTagResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the StructuredDocumentTag. */ structuredDocumentTag: StructuredDocumentTag; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }