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