import React from 'react'; import './index.less'; export interface GoodsProps { value: any[]; type: number; enableItemId?: boolean; enableSupplierName?: boolean; onChange: (value: any) => void; disabled?: boolean; [key: string]: any; } export interface GoodsItem { picUrl: string; platform: string; title: string; price: string; [key: string]: any; } declare const ItemList: (props: Partial) => React.JSX.Element; export default ItemList;