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