import React from "react";
import { Descendant } from "slate";
export interface EditorProps {
    value?: Descendant[];
    onChange?: (value: Descendant[]) => void;
    placeholder?: string;
    readOnly?: boolean;
    containerStyle?: React.CSSProperties;
    editorStyle?: React.CSSProperties;
    height?: string;
}
export declare const Editor: React.FC<EditorProps>;
export default Editor;
