import React, { Dispatch, SetStateAction } from "react"; import { Theme } from "../utils/types"; declare const Editor: ({ documentContent, documentId, theme_, setTheme_, readOnly, submitAllowed, }: { documentContent?: string | undefined; documentId?: string | undefined; theme_?: Theme | undefined; setTheme_?: React.Dispatch> | undefined; readOnly?: boolean | undefined; submitAllowed?: boolean | undefined; }) => JSX.Element; export default Editor;