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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the document property.
     */
    documentProperty: DocumentProperty;
    constructor(init?: Partial<DocumentPropertyResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
