import { type Config, type PostUserContact, type UserContact } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Creates a user contact. * * @param postContact - Post contact client. * * @returns Thunk factory. */ declare const createUserContactFactory: (postContact: PostUserContact) => (id: number, data: UserContact, config?: Config) => (dispatch: Dispatch) => Promise; export default createUserContactFactory;