import React from 'react'; import { FormInstance } from 'antd'; import './index.less'; interface GoodModelProps { visible: boolean; type: number; shopId: number | string; imgList: any[]; maxLength: number; shopList: any[]; changeSku?: boolean; width?: string | number; numIidType?: 'string' | 'number'; form?: FormInstance; isPriorityDisplayOfOrderNo?: boolean; onSubmit: (...args: any[]) => any; onCancel: (...args: any[]) => any; } declare const GoodsModal: (props: GoodModelProps) => React.JSX.Element; export default GoodsModal;