import React from "react"; import { RichTextEditorProps } from "./RichTextEditor"; interface ParagraphLexicalEditorProps extends RichTextEditorProps { tag?: "p"; } declare const ParagraphEditor: ({ placeholder, tag, ...rest }: ParagraphLexicalEditorProps) => React.JSX.Element; export { ParagraphEditor };