import { type Config, type GetWishlistSet, type Wishlist, type WishlistSet } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchWishlistSetAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to get information * of a set from a wishlist. * * @param getWishlistSet - Get wishlists set client. * * @returns Thunk factory. */ declare const fetchWishlistSetFactory: (getWishlistSet: GetWishlistSet) => (wishlistId: Wishlist['id'], wishlistSetId: WishlistSet['setId'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchWishlistSetFactory;