import type { PatchUserPersonalId } from './types/index.js'; /** * Method responsible for updating specific personal id. * * @param userId - User identifier. * @param personalId - Personal identifier. * @param data - 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 patchUserPersonalId: PatchUserPersonalId; export default patchUserPersonalId;