import { type Config, type GetUserAddress, type User, type UserAddress } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchUserAddressAction } from '../../types/index.js'; /** * Gets the details of the user address with the specified 'addressId'. * * @param getUserAddress - Get user address client. * * @returns Thunk factory. */ declare const fetchUserAddressFactory: (getUserAddress: GetUserAddress) => (userId: User['id'], addressId: UserAddress['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserAddressFactory;