import type { GetUserDefaultContactAddress } from './types/index.js'; /** * Responsible for obtaining the user's default contact address. * * @param userId - Identifier of the user. * @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 getUserDefaultContactAddress: GetUserDefaultContactAddress; export default getUserDefaultContactAddress;