import React from 'react'; import { FormInstance } from 'antd'; import './richItem.less'; type ShowHeaderObjType = { title: string; dataIndex: string; show?: boolean; }; export interface RichGoodProps { isSingleRow: boolean; value?: { shopId: string; imgList: any[]; }; showChangeBtn?: boolean; type?: number; enableItemId?: boolean; enableSupplierName?: boolean; userNick?: string; maxLength: number; canUpdateNumber?: boolean; onChange?: (value: any) => void; shopList: any[]; otherOperations?: React.JSX.Element; showHeader?: ShowHeaderObjType[] | string[]; shopId?: string; disabled?: boolean; changeSku?: boolean; width?: string | number; form?: FormInstance; isPriorityDisplayOfOrderNo?: boolean; } declare const GoodItem: (props: Partial) => React.JSX.Element; export default GoodItem;