import { ContentVector } from "document-schema.js"; import { XmlElement } from "ooxml.js"; //#region src/ooxml/docx/vector.d.ts interface DetectedParagraphVector { readonly drawingElement: XmlElement; readonly vector: ContentVector; } declare function collectParagraphVectors(paragraph: XmlElement): readonly DetectedParagraphVector[]; //#endregion export { DetectedParagraphVector, collectParagraphVectors };