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