import React from 'react'; import './index.less'; export interface GoodsProps { value?: GoodsValues; type?: number; enableItemId?: boolean; enableSupplierName?: boolean; userNick?: string; maxLength: number; onChange?: (value: any) => void; shopList: any[]; shopId?: string; disabled?: boolean; changeSku?: boolean; width?: string | number; } interface GoodsValues { shopId: string; imgList: any[]; } export interface GoodsItem { numIid: number; picUrl: string; platform: string; title: string; price: string; outerId?: number; [key: string]: any; } export interface IEditState { outerId: string | null; numIid: number | null; supplierItemOuterId?: string | null; itemId?: string | null; supplierName: string | null; } declare const Goods: (props: Partial) => React.JSX.Element; export default Goods;