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