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