import type { FieldValue } from "./field-value.js"; export declare class MarkdownValue implements FieldValue { private readonly markdown; private htmlCache; constructor(markdown: string); toMarkdown(): string; toHtml(): string; toString(): string; getRestAPIValue(): string; }