import React from "react";
import { Descendant } from "slate";
export interface ReadOnlyEditorProps {
    value: Descendant[];
    placeholder?: string;
    style?: React.CSSProperties;
    containerStyle?: React.CSSProperties;
    editorStyle?: React.CSSProperties;
}
export declare const ReadOnlyEditor: React.FC<ReadOnlyEditorProps>;
