import type { DeleteUserPersonalId } from './types/index.js'; /** * Method responsible for deleting a personal id. * * @param userId - The user's id. * @param personalId - The personal identifier. * @param config - Custom configurations to send to the client instance (axios). X-SUMMER-RequestId * header is required. * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const deleteUserPersonalId: DeleteUserPersonalId; export default deleteUserPersonalId;