import { AttributeInfo } from '../internal/attributeInfo'; import { DocumentStatData } from './documentStatData'; import { FileLink } from './fileLink'; import { WordsResponse } from './wordsResponse'; export declare const importsMapStatDataResponse: { DocumentStatData: typeof DocumentStatData; FileLink: typeof FileLink; WordsResponse: typeof WordsResponse; }; /** * The REST response with document's statistical data. */ export declare class StatDataResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to the document. */ documentLink: FileLink; /** * Gets or sets the statistical data of the document. */ statData: DocumentStatData; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }