import { type Config, type Exchange, type ExchangeBookRequest, type GetExchangeBookRequest } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchExchangeBookRequestAction } from '../../index.js'; /** * Method responsible for obtaining a specific exchange book request. * * @param getExchangeBookRequest - Get exchange book request client. * * @returns Thunk factory. */ declare const fetchExchangeBookRequestFactory: (getExchangeBookRequest: GetExchangeBookRequest) => (exchangeId: Exchange['id'], bookRequestId: ExchangeBookRequest['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchExchangeBookRequestFactory;