import { type Config, type GetUserContact } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Get contact from user. * * @param getContact - Get contact client. * * @returns Thunk factory. */ declare const fetchUserContactFactory: (getContact: GetUserContact) => (id: number, contactId: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserContactFactory;