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<AttributeInfo>;
    /**
     * 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<FootnotesStatData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
