export interface MarkdownEditorProps { /** Initial markdown content */ initialValue?: string; /** Callback when content changes */ onChange?: (value: string) => void; /** Placeholder text */ placeholder?: string; /** Default view mode */ defaultMode?: "edit" | "preview" | "split"; /** Height of the editor */ height?: string | number; /** Additional CSS class */ className?: string; /** Whether the editor is read-only */ readOnly?: boolean; /** Enable GitHub Flavored Markdown */ enableGfm?: boolean; /** Custom toolbar actions */ toolbar?: React.ReactNode; } export declare const MarkdownEditor: React.FC; //# sourceMappingURL=markdown-editor.d.ts.map