///
import '@wangeditor/editor/dist/css/style.css';
import { EntityDict } from './../../../general-app-domain';
import { WebComponentProps } from 'oak-frontend-base';
export default function Render(props: WebComponentProps void;
setEditor: (editor: any) => void;
confirm: () => void;
preview: () => void;
addExtraFile: (file: EntityDict['extraFile']['CreateSingle']['data']) => Promise;
uploadFile: (file: EntityDict['extraFile']['CreateSingle']['data']) => Promise<{
bucket: string;
url: string;
}>;
clearContentTip: () => void;
}>): JSX.Element;