import { type Config, type GetUserContacts } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Fetch all the contacts from user. * * @param getContacts - Get contacts client. * * @returns Thunk factory. */ declare const fetchUserContactsFactory: (getContacts: GetUserContacts) => (id: number, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchUserContactsFactory;