import { Package, XmlElement } from "ooxml.js"; import { LayoutMetadata } from "document-schema.js"; //#region src/edit/pptx/scaffold.d.ts declare const PML_NS = "http://schemas.openxmlformats.org/presentationml/2006/main"; declare const DML_NS = "http://schemas.openxmlformats.org/drawingml/2006/main"; declare const R_NS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships"; declare const SLIDE_LAYOUT_PART_PATH = "ppt/slideLayouts/slideLayout1.xml"; declare const PRESENTATION_PART_PATH = "ppt/presentation.xml"; declare const SLIDE_LAYOUT_REL_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout"; declare const NOTES_MASTER_REL_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/notesMaster"; declare function buildEmptyGroupSpTree(): XmlElement; declare function ensureNotesMaster(pkg: Package): string; interface CreateEmptyPptxPackageOptions { readonly metadata?: LayoutMetadata; } declare function createEmptyPptxPackage(options?: CreateEmptyPptxPackageOptions): Package; //#endregion export { CreateEmptyPptxPackageOptions, DML_NS, NOTES_MASTER_REL_TYPE, PML_NS, PRESENTATION_PART_PATH, R_NS, SLIDE_LAYOUT_PART_PATH, SLIDE_LAYOUT_REL_TYPE, buildEmptyGroupSpTree, createEmptyPptxPackage, ensureNotesMaster };