import React from "react"; import { RichTextEditorProps } from "./RichTextEditor"; interface HeadingEditorProps extends RichTextEditorProps { tag?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; } export declare const HeadingEditor: ({ tag, placeholder, ...rest }: HeadingEditorProps) => React.JSX.Element; export {};