interface IProps { onClose: () => void; type: number; } declare const EditGoods: (props: IProps) => JSX.Element; export default EditGoods;