import type { PutUserDefaultPersonalId } from './types/index.js'; /** * Method responsible for update a personal id. * * @param userId - Universal identifier of the user. * @param data - Object containing personal id data. * @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 putUserDefaultPersonalId: PutUserDefaultPersonalId; export default putUserDefaultPersonalId;