/**
 * @packageDocumentation
 *
 * This module provides utility functions for working with markdown editors in Obsidian
 */
import type { Editor } from 'obsidian';
/**
 * Locks the editor.
 *
 * @param editor - The editor to lock.
 */
export declare function lockEditor(editor: Editor): void;
/**
 * Unlocks the editor.
 *
 * @param editor - The editor to unlock.
 */
export declare function unlockEditor(editor: Editor): void;
