import React from 'react'; interface Props { text: string; setText: (newValue: string) => void; mode: { type: string; }; isSelected: boolean; entityId: string; } export declare const PlainTextElement: React.ForwardRefExoticComponent>; export {};