import { Archive } from '../../classes/Archive.js'; import { UnhandledXmlFile } from '../../classes/XmlFile.js'; import { FileMime } from '../../enums.js'; export declare class FootnotesXml extends UnhandledXmlFile { static contentType: FileMime; /** * Instantiate this class by looking at the DOCX XML for it. */ static fromArchive(archive: Archive, location: string): Promise; }