import { type Config, type PatchUserPersonalId, type PatchUserPersonalIdData, type User, type UserPersonalIdPartial } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Updates a specific personal id. * * @param patchUserPersonalId - Update a specific personal id. * * @returns Thunk factory. */ declare const updateUserPersonalIdFactory: (patchUserPersonalId: PatchUserPersonalId) => (userId: User['id'], personalId: string, data: PatchUserPersonalIdData, config: Config) => (dispatch: Dispatch) => Promise; export default updateUserPersonalIdFactory;