import { type Config, type DeleteUserPersonalId, type User } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Deletes a specific user attribute. * * @param deletePersonalId - Delete a specific personal id. * * @returns Thunk factory. */ declare const removeUserPersonalIdFactory: (deleteUserPersonalId: DeleteUserPersonalId) => (userId: User['id'], personalId: string, config: Config) => (dispatch: Dispatch) => Promise; export default removeUserPersonalIdFactory;