import { Cart } from '@open-tender/types'; import { CartItemProps, CheckoutCartProps, QuantityProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const CheckoutCart: ({ cart, navigate, children, QuantityView, CartItemView }: { cart: Cart; navigate: (route: string) => void; children: (props: CheckoutCartProps) => ReactNode; QuantityView: (props: QuantityProps) => React.ReactNode; CartItemView: (props: CartItemProps) => React.ReactNode; }) => React.ReactNode; export default CheckoutCart;