import type { GetBagOperations } from './types/getBagOperations.types.js'; /** * Method responsible for retrieving operations carried out on the bag. * * * @param id - Universal identifier of the bag. * @param query - Query parameters to apply. * @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 getBagOperations: GetBagOperations; export default getBagOperations;