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