import type { GetBagOperation } from './types/getBagOperation.types.js'; /** * Method responsible for retrieving an operation performed on the bag. * * * @param id - Universal identifier of the bag. * @param bagOperationId - Universal identifier of the bag operation. * @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 getBagOperation: GetBagOperation; export default getBagOperation;