import { Box } from "document-schema.js"; import { Package, XmlElement } from "odf.js"; //#region src/edit/odt/image.d.ts interface ImageInit { readonly format: "png" | "jpeg" | "svg" | "gif"; readonly bytes: Uint8Array; readonly widthPt: number; readonly heightPt: number; readonly altText?: string; } declare function buildImageFrame(href: string, frame: Box, altText?: string): XmlElement; declare function insertImageFrameMedia(pkg: Package, frame: Box, image: ImageInit): XmlElement; //#endregion export { buildImageFrame as n, insertImageFrameMedia as r, ImageInit as t };