import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapFootnotesStatData: {}; /** * Container for the footnotes statistical data. */ export declare class FootnotesStatData implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the total count of paragraphs in footnotes. */ paragraphCount: number; /** * Gets or sets the total count of words in footnotes. */ wordCount: number; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }