import type { GetUserAddress } from './types/index.js'; /** * Responsible for getting the details of the address with the specified 'id'. * * @param props - Get address properties. * @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 getUserAddress: GetUserAddress; export default getUserAddress;