import React from 'react'; import { shoppingCartProps } from './type'; declare const shoppingCart: ({ onCard, onAction, onChange, onAddProduct, onActiveKey, ...props }: shoppingCartProps) => React.JSX.Element; export default shoppingCart;