import type { BaseEditor } from 'slate'; import type { HistoryEditor } from 'slate-history'; import type { ReactEditor } from 'slate-react'; import React from 'react'; import type { ElementNode, FieldProps, TextNode } from '../types'; import './index.scss'; declare module 'slate' { interface CustomTypes { Editor: BaseEditor & ReactEditor & HistoryEditor; Element: ElementNode; Text: TextNode; } } declare const _default: React.FC; export default _default; //# sourceMappingURL=RichText.d.ts.map