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