import { InquiryMaterialSpuPrice } from '../../order'; import { Base, Id, TimeUnit } from '../../utils'; export declare class SynergySpuAttr extends Base { name: string; spuPrice: InquiryMaterialSpuPrice; leadTime: { amount: number; unit: TimeUnit; }; constructor(props?: Partial); } export declare class SynergySpuMapping extends Base { supplierId: Id; supplierName: string; /** 客户方spu */ sourceSpuId: Id; sourceSpuAttr: SynergySpuAttr; /** 供应商spu */ mappingSpuId: Id; mappingSpuAttr: SynergySpuAttr; isAvailable: boolean; constructor(props?: Partial); }