import { type Config, type GetRecommendedProductSet, type RecommendedProductSet } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchRecommendedProductSetAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to fetch a specific recommended * product set. * * @param getRecommendedProductSet - Get recommended product set client. * * @returns Thunk factory. */ declare const fetchRecommendedProductSetFactory: (getRecommendedProductSet: GetRecommendedProductSet) => (recommendedProductSetId: number, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchRecommendedProductSetFactory;