import React from 'react'; import { CartMutationProps } from './cartMutationUtils'; type RemoveFromCartProps = CartMutationProps; declare const RemoveFromCart: ({ cartQuery, children }: RemoveFromCartProps) => React.JSX.Element; export default RemoveFromCart;