import { AttributeInfo } from '../internal/attributeInfo'; import { DocumentProperty } from './documentProperty'; import { WordsResponse } from './wordsResponse'; export declare const importsMapDocumentPropertyResponse: { DocumentProperty: typeof DocumentProperty; WordsResponse: typeof WordsResponse; }; /** * The REST response with a document property. * This response should be returned by the service when handling: GET documentProperties/{propertyName}. */ export declare class DocumentPropertyResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the document property. */ documentProperty: DocumentProperty; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }