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