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