import React from "react"; import { Label } from "../Label"; import { Error } from "../Error"; import type { EnabledActions } from "./types"; import type { PasteResult } from "./Plugins/PasteInterceptorPlugin"; export interface Props { id: string; dataTestId: string; label?: React.ComponentProps; ariaLabel?: string; fieldClasses?: string; error?: React.ComponentProps; multiline?: boolean; rows?: number; width?: string; editable?: boolean; enabledActions?: EnabledActions; value?: string; onChange?: (value: string) => void; onBlur?: (value: string) => void; onPaste?: (text: string) => PasteResult; } export declare const RichTextEditor: (props: Props) => React.JSX.Element;