import { type AccountSetting, type Config, type GetAccountSetting } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchAccountSettingAction } from '../../types/index.js'; /** * Creates a thunk factory configured with the specified client to fetch a setting by id. * * @param getAccountSetting - Get account settings client. * * @returns Thunk factory. */ declare const fetchAccountSettingFactory: (getAccountSetting: GetAccountSetting) => (settingId: AccountSetting['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchAccountSettingFactory;