import { type BlogDocument } from '../../../utils/blogDocument.js'; interface BlogEditorProps { value?: BlogDocument; showJson?: boolean; showMeta?: boolean; compact?: boolean; class?: string; onchange?: (doc: BlogDocument) => void; } declare const BlogEditor: import("svelte").Component; type BlogEditor = ReturnType; export default BlogEditor;