export type ReSyncPlatform = 'JST_ERP' | 'WLN_ERP' | 'WDT_ERP' | 'GY_ERP' | 'JY_ERP' | 'KM_ERP'; export type ReSyncAction = { key: 'goods'; label: '同步商品'; targetName: '商品'; value: string; requestData: { platform: ReSyncPlatform; goodNos?: string[]; skuCodes?: string[]; styleCodes?: string[]; skuType?: 'normal' | 'combine'; }; }; export declare const getReSyncActions: (platform: ReSyncPlatform, total: number | null, formData: Record) => ReSyncAction[];