import type { FC } from 'react';
import type { PageData } from '../../utils/wufeng';
import 'braft-editor/dist/index.css';
interface FormContentProps {
    /**
     * 最外层容器类名
     */
    className?: string;
    /**
     * 预览态h5前缀
     */
    previewH5Url: string;
    /**
     * 表单DSL数据
     */
    pageData: PageData | undefined;
    /**
     * 回退函数
     */
    onBack: () => void;
    /**
     * 应用ID
     */
    appId: string;
    formId: string | undefined;
    catalogItemId: string | undefined;
    formContentType: number;
}
declare const FormContent: FC<FormContentProps>;
export default FormContent;
