import type { PatchUserAttribute } from './types/index.js'; /** * Method responsible for updating specific user attribute. * * @param userId - User's id to be filtered for. * @param attributeId - The attribute id to be filtered for. * @param data - User attribute data. * @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 patchUserAttribute: PatchUserAttribute; export default patchUserAttribute;