import type { PostUserAttribute } from './types/index.js'; /** * Method responsible for creating new user attributes. * * @param userId - User's id to set the attributes. * @param data - User attributes object. * @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 postUserAttribute: PostUserAttribute; export default postUserAttribute;