import { type Config, type GetUser } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchUserAction } from '../../types/index.js'; /** * Fetch the user data. * * @param getUser - Get user client. * * @returns Thunk factory. */ declare const fetchUserFactory: (getUser: GetUser) => (config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserFactory;