import React__default from 'react'; import { RenderLeafProps, RenderElementProps } from 'slate-react'; interface ContentProps { className?: string; placeholder?: string; spellCheck?: boolean; autoFocus?: boolean; readOnly?: boolean; style?: React__default.CSSProperties; renderLeaf?: (props: RenderLeafProps, leaf: JSX.Element) => JSX.Element; renderElement?: (props: RenderElementProps, element: JSX.Element) => JSX.Element; onKeyboard?: (event: React__default.KeyboardEvent) => boolean; } declare function Content(props: ContentProps): JSX.Element; declare const _default: React__default.MemoExoticComponent; export { ContentProps, _default as default };