import React from 'react';
export default function EditorView({ content }: {
    content: string;
}): React.JSX.Element;
