import { type Config, type Contents, type GetSearchContents, type QuerySearchContents } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchContentsAction } from '../../types/index.js'; /** * Fetch contents for a specific query object received. * * @param getSearchContents - Get search contents client. * * @returns Thunk factory. */ declare const fetchContentsFactory: (getContent: GetSearchContents) => (query?: QuerySearchContents, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchContentsFactory;