import type { PutBagPromocodes } from './types/index.js'; /** * Method responsible for set list of promocodes in the bag. * * @param id - Universal identifier of the bag. * @param data - List of promocodes to set to 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 putBagPromocodes: PutBagPromocodes; export default putBagPromocodes;