import * as wasm from "./pkg"; import { Run } from "./run"; import { Insert } from "./insert"; import { Delete } from "./delete"; import { Comment } from "./comment"; import { CommentEnd } from "./comment-end"; import { ParagraphChild } from "./paragraph"; export type HyperlinkType = "anchor" | "external"; export declare class Hyperlink { v: string; type: HyperlinkType; children: ParagraphChild[]; constructor(v: string, t: HyperlinkType); addRun(run: Run): this; addInsert(ins: Insert): this; addDelete(del: Delete): this; addBookmarkStart(id: number, name: string): this; addBookmarkEnd(id: number): this; addCommentStart(comment: Comment): this; addCommentEnd(end: CommentEnd): this; } export declare const convertHyperlinkType: (link: Hyperlink) => wasm.HyperlinkType;