import { Cart, Item } from './cart/Cart.js'; declare const _default: (cart: Cart, uuid: string, qty: string, action: "increase" | "decrease", context?: Record) => Promise; export default _default; export declare function hookBeforeUpdateCartItemQty(callback: (this: Record, ...args: [ cart: Cart, uuid: string, qty: string, action: 'increase' | 'decrease', context: Record ]) => void | Promise, priority?: number): void; export declare function hookAfterUpdateCartItemQty(callback: (this: Record, ...args: [ cart: Cart, uuid: string, qty: string, action: 'increase' | 'decrease', context: Record ]) => void | Promise, priority?: number): void;