import { FieldValues, Path } from 'react-hook-form'; import { RichTextEditorProps } from './rich-text-editor.v2'; interface ControlledRichTextEditorProps extends Omit { name: Path; label?: string; required?: boolean; className?: string; description?: string; } export declare const ControlledRichTextEditor: ({ name, label, required, className, description, ...props }: ControlledRichTextEditorProps) => import("react/jsx-runtime").JSX.Element; export {};