import * as React from 'react'; import './BlockParagraph.css'; interface Props { id: string; html: string; readonly: boolean; showHTML: boolean; onHTMLChange: (html: string) => void; onNewLineKeyPress: () => void; } declare class BlockParagraph extends React.Component { constructor(props: Props); render(): JSX.Element; private renderEditable; private renderTextarea; private onChange; private onKeyDown; } export default BlockParagraph;