import type { PutUserDefaultShippingAddress } from './types/index.js'; /** * Sets the address specified with 'id', as the default shipping 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 putUserDefaultShippingAddress: PutUserDefaultShippingAddress; export default putUserDefaultShippingAddress;