import type { PatchBagItem } from './types/index.js'; /** * Method responsible for updating the quantity and the size of an item in the bag. * * @param id - Universal identifier of the bag. * @param itemId - Numeric identifier of the item to patch. * @param data - Details of the product to update a bag item. * @param query - Query with parameters to get the bag. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const patchBagItem: PatchBagItem; export default patchBagItem;