import { n as ParagraphInit, t as OdtParagraph } from "./paragraph-CRaLSzWz.cjs"; import { t as OdtList } from "./list-C_UPIZWM.cjs"; import { Box } from "document-schema.js"; import { Package, XmlElement, XmlNode } from "odf.js"; //#region src/edit/odp/shape.d.ts declare class OdpShape { private readonly container; private readonly node; private readonly pkg; private removed; constructor(container: XmlNode[], node: XmlElement, pkg: Package); private live; get name(): string | undefined; get frame(): Box | undefined; set frame(value: Box); get rotationDeg(): number | undefined; set rotationDeg(value: number | undefined); private applyGeometry; private textBox; paragraphs(): OdtParagraph[]; appendParagraph(init?: ParagraphInit): OdtParagraph; get text(): string; set text(value: string); addList(): OdtList; remove(): void; } declare function buildTextBoxFrame(pkg: Package, frame: Box, text: string): XmlElement; declare function buildImageFrame(partPath: string, frame: Box, altText?: string): XmlElement; declare function buildTableFrame(frame: Box, tableElement: XmlElement): XmlElement; //#endregion export { buildTextBoxFrame as i, buildImageFrame as n, buildTableFrame as r, OdpShape as t };