import type React from "react"; export interface MDXEditorProps { /** Initial MDX 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; /** Custom preview renderer */ renderPreview?: (mdx: string) => Promise | React.ReactNode; /** Available components for MDX */ components?: Record>; /** Show syntax errors */ showErrors?: boolean; } export declare const MDXEditor: React.FC; //# sourceMappingURL=mdx-editor.d.ts.map