import { type Config, type GetRaffle, type Raffle } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for fetching a raffle. * * @param getRaffle - Get raffle client. * * @returns Thunk factory. */ declare const fetchRaffleFactory: (getRaffle: GetRaffle) => (raffleId: Raffle['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchRaffleFactory;