import { XmlComponent } from "../../../file/xml-components"; import { TextRun } from "../run"; export declare class Bookmark { readonly start: BookmarkStart; readonly children: TextRun[]; readonly end: BookmarkEnd; constructor(options: { readonly id: string; readonly children: TextRun[]; }); } export declare class BookmarkStart extends XmlComponent { constructor(id: string, linkId: string); } export declare class BookmarkEnd extends XmlComponent { constructor(linkId: string); }