rich-text-editor
Version:
Rich text editor
14 lines (13 loc) • 459 B
TypeScript
import { RichTextEditorHandle } from '../..';
export type TextAreaProps = {
ariaInvalid?: boolean;
ariaLabelledBy?: string;
questionId?: number;
editorStyle?: React.CSSProperties;
className?: string;
id?: string;
lang?: string;
toolbarRoot?: HTMLElement;
};
declare const MainTextArea: import("react").ForwardRefExoticComponent<TextAreaProps & import("react").RefAttributes<RichTextEditorHandle>>;
export default MainTextArea;