import { Editor } from '@tiptap/core'; import React, { ForwardedRef, HTMLProps } from 'react'; export interface EditorContentProps extends HTMLProps { editor: Editor | null; innerRef?: ForwardedRef; } export declare class PureEditorContent extends React.Component { editorContentRef: React.RefObject; initialized: boolean; unsubscribeToContentComponent?: () => void; constructor(props: EditorContentProps); componentDidMount(): void; componentDidUpdate(): void; init(): void; componentWillUnmount(): void; render(): React.JSX.Element; } export declare const EditorContent: React.MemoExoticComponent & React.RefAttributes>>; //# sourceMappingURL=EditorContent.d.ts.map