import { type CollectPoint, type Config, type GetCollectPoints, type GetCollectPointsQuery } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for obtaining the collect points. * * @param getCollectPoints - Get collect points client. * * @returns Thunk factory. */ declare const fetchCollectPointsFactory: (getCollectPoints: GetCollectPoints) => (query?: GetCollectPointsQuery, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCollectPointsFactory;