import React from 'react'; declare type PlainTextEditorProps = { initialValue: string; testId?: string; isSelected: boolean; update: (newValue: string) => void; }; /** * Creates a plain text editor component */ export declare const PlainTextEditor: React.ForwardRefExoticComponent>; export declare const PlainTextComponent: React.FC<{ value: string; }>; export {};