import type { PatchUserContact } from './types/index.js'; /** * Method responsible for updating a user contact. * * @param userId - The user's id. * @param contactId - The contact id. * @param data - Array of objects containing the item patch document reflecting the changes to be * made to the contact. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const patchUserContact: PatchUserContact; export default patchUserContact;