import { type Config, type PatchUserContact, type PatchUserContactOperation } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Updates a user contact. * * @param patchContact - Patch contact client. * * @returns Thunk factory. */ declare const updateUserContactFactory: (patchContact: PatchUserContact) => (id: number, contactId: string, data: PatchUserContactOperation[], config?: Config) => (dispatch: Dispatch) => Promise; export default updateUserContactFactory;