import { DocumentProperties as DocxProperties } from 'office-document-properties'; import { GenericFile } from './generic-file.js'; /** * Currently only handles importing existing .docx files, and extracting their contents * and metadata. In the future we may use this to generate them from scratch for reports. */ export declare class DocX extends GenericFile { static mimeTypes: string[]; static extensions: string[]; getContent(): Promise<{ html: string; text: string; }>; getMetadata(): Promise; } //# sourceMappingURL=docx.d.ts.map