import { ContentRun } from "document-schema.js"; //#region src/edit/markdown/run.d.ts interface RunInit { readonly text?: string; readonly bold?: boolean; readonly italic?: boolean; readonly strike?: boolean; readonly hyperlink?: string; readonly code?: boolean; } declare class MarkdownRun { private readonly container; private readonly node; private removed; constructor(container: ContentRun[], node: ContentRun); private live; get text(): string; set text(value: string); get bold(): boolean; set bold(value: boolean); get italic(): boolean; set italic(value: boolean); get strike(): boolean; set strike(value: boolean); get hyperlink(): string | undefined; set hyperlink(value: string | undefined); get code(): boolean; set code(value: boolean); remove(): void; } declare function buildRun(init?: RunInit): ContentRun; //#endregion export { RunInit as n, buildRun as r, MarkdownRun as t };