import type { GetUserCreditMovements } from './types/index.js'; /** * Method responsible to get the credit movements of the user. * * @param userId - User identifier. * @param query - Query parameters. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getUserCreditMovements: GetUserCreditMovements; export default getUserCreditMovements;