import * as wasm from "./pkg/docx_wasm"; export declare class TableOfContentsItem { _text: string; _tocKey: string; _level: number; _pageRef: string; text: (text: string) => this; tocKey: (key: string) => this; level: (l: number) => this; pageRef: (r: string) => this; buildWasmObject: () => wasm.TableOfContentsItem; }