import { FormItemProps } from '../../../interfaces/common'; import { Store } from 'antd/lib/form/interface'; export interface Payload { formConfig: Store; formItems: FormItemProps[]; submitFetch?: string[]; fromTable: boolean; path: string; } export default function generateLongFormModalCode(payload: Payload): string;