import { r as buildParagraph, t as DocParagraph } from "../../paragraph-DM9n9I4T.cjs"; import { Box, ContentShape, ContentSlide } from "document-schema.js"; //#region src/edit/ppt/slide.d.ts interface TextBoxInit { readonly frame: Box; readonly text?: string; } declare class PptShape { private readonly container; private readonly node; private removed; constructor(container: ContentShape[], node: ContentShape); private live; get frame(): Box; set frame(value: Box); get rotationDeg(): number | undefined; paragraphs(): DocParagraph[]; appendParagraph(init?: Parameters[0]): DocParagraph; get text(): string; set text(value: string); remove(): void; } declare class PptSlide { private readonly container; private readonly node; private removed; constructor(container: ContentSlide[], node: ContentSlide); private live; get size(): ContentSlide["size"]; set size(value: ContentSlide["size"]); get notes(): string; set notes(value: string); shapes(): PptShape[]; addTextBox(init: TextBoxInit): PptShape; remove(): void; } declare function buildSlide(size: ContentSlide["size"]): ContentSlide; //#endregion export { PptShape, PptSlide, TextBoxInit, buildSlide };