import RichText from "./richtext/index"; import TextArea from "./textarea/index"; import { IExportWatermark } from "./types/exportWatermark"; import OriginEditor from './Editor'; import { exportWORD } from "./export/index"; import { IEditorRefProps, TOriginEditorProps } from './types/editor'; import { ExportOptions } from './types/export'; type InternalEditorType = typeof OriginEditor; type TEditorProps = InternalEditorType & { TextArea: typeof TextArea; RichText: typeof RichText; }; declare const Editor: TEditorProps; export default Editor; export { exportWORD }; export type { ExportOptions, IEditorRefProps, IExportWatermark, TEditorProps, TOriginEditorProps, };