| 1234567891011 | /// <reference types="react" />
import { ControlType, EditorState } from "braft-editor";
interface BaseEditorProps {
    value: EditorState;
    onChange: (editorState: EditorState) => void;
    controls?: ControlType[];
    FloatControls?: any;
}
declare const BarftEditorPage: ({ value, onChange, controls, FloatControls }: BaseEditorProps) => JSX.Element;
export { BarftEditorPage as default, BarftEditorPage, BaseEditorProps };
 |