import { LayoutMetadata } from "document-schema.js"; import { Package } from "odf.js"; //#region src/edit/odp/scaffold.d.ts declare const ODF_VERSION = "1.3"; declare const PAGE_LAYOUT_NAME = "PM1"; declare const MASTER_PAGE_NAME = "Standard"; interface CreateEmptyOdpPackageOptions { readonly metadata?: LayoutMetadata; } declare function createEmptyOdpPackage(options?: CreateEmptyOdpPackageOptions): Package; //#endregion export { CreateEmptyOdpPackageOptions, MASTER_PAGE_NAME, ODF_VERSION, PAGE_LAYOUT_NAME, createEmptyOdpPackage };