import { Package, XmlElement } from "ooxml.js"; //#region src/opc/rels.d.ts interface NewRelationship { readonly type: string; readonly target: string; readonly targetMode?: "External"; } declare function allocateRelationshipId(relationshipsRoot: XmlElement): string; declare function addRelationship(pkg: Package, partPath: string, rel: NewRelationship): string; declare function addRootRelationship(pkg: Package, rel: NewRelationship): string; //#endregion export { NewRelationship, addRelationship, addRootRelationship, allocateRelationshipId };