import type { Component } from "svelte"; export interface EditorOutput { markdown: string; json: object; } export declare const CompactEditor: Component<{ content?: string; contentJson?: object; placeholder?: string; onUpdate?: (output: EditorOutput) => void; editable?: boolean; documentId?: string; documentUpdatedAt?: string; }>;