import { JSONContent } from '@tiptap/core'; /** * Extract title from document content (JSON structure from editor) * Looks for H1 headings first, then any text content */ export declare const extractTitleFromContent: (changes: { content: JSONContent; }) => string | null;