import type { PutUserAddress } from './types/index.js'; /** * Responsible for updating the address information with the specified 'id'. * * @param props - Put address query. * @param data - Object containing the address information. * @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 putUserAddress: PutUserAddress; export default putUserAddress;