import { n as ParagraphInit, t as OdtParagraph } from "./paragraph-D4f705GG.js"; import { Package, XmlElement, XmlNode } from "odf.js"; //#region src/edit/odt/list.d.ts declare class OdtListItem { private readonly node; private readonly pkg; constructor(node: XmlElement, pkg: Package); paragraphs(): OdtParagraph[]; get text(): string; nestedLists(): OdtList[]; appendParagraph(init?: ParagraphInit): OdtParagraph; addNestedList(): OdtList; } declare class OdtList { private readonly container; private readonly node; private readonly pkg; private removed; constructor(container: XmlNode[], node: XmlElement, pkg: Package); private live; items(): OdtListItem[]; addItem(): OdtListItem; remove(): void; indentItem(index: number): void; } declare function buildList(pkg: Package): XmlElement; //#endregion export { OdtListItem as n, buildList as r, OdtList as t };