import type { PutUserDefaultBillingAddress } from './types/index.js'; /** * Sets the address specified with 'id', as the default billing address. * * @param userId - Identifier of the user. * @param addressId - Identifier of the address. * @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 putUserDefaultBillingAddress: PutUserDefaultBillingAddress; export default putUserDefaultBillingAddress;