import type React from "react"; export interface BlockEditorProps { /** Initial JSON content */ initialValue?: any; /** Callback when content changes */ onChange?: (json: any) => void; /** Placeholder text */ placeholder?: string; /** Height of the editor */ height?: string | number; /** Additional CSS class */ className?: string; /** Whether the editor is read-only */ readOnly?: boolean; /** Available block types */ availableBlocks?: BlockType[]; } export type BlockType = "paragraph" | "heading1" | "heading2" | "heading3" | "bulletList" | "orderedList" | "quote" | "code" | "image"; export declare const BlockEditor: React.FC; //# sourceMappingURL=block-editor.d.ts.map