/**
 * @packageDocumentation
 *
 * Utilities for working with MarkdownView
 */
import type { MarkdownView } from 'obsidian';
/**
 * Get the full HTML content of the current MarkdownView
 *
 * @param view - The MarkdownView to get the HTML from
 * @returns The full HTML of the MarkdownView
 */
export declare function getFullContentHtml(view: MarkdownView): string;
