import type { GetUserAddresses } from './types/index.js'; /** * Responsible for getting all the addresses of the current user. * * @param props - Get addresses query. * @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 getUserAddresses: GetUserAddresses; export default getUserAddresses;