import type { GetUserCredits } from './types/index.js'; /** * Method responsible to get the credit balance of the user. * * @param userId - User identifier. * @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 getUserCredits: GetUserCredits; export default getUserCredits;