import { type Config, type PostUserPersonalId, type PostUserPersonalIdData, type User, type UserPersonalIdPartial } from '@farfetch/blackout-client'; import type { CreateUserPersonalIdAction } from '../../types/actions.types.js'; import type { Dispatch } from 'redux'; /** * Method responsible for creating personal ids. * * @param postUserPersonalId - Post personal ids client. * * @returns Thunk factory. */ declare const createUserPersonalIdsFactory: (postUserPersonalIds: PostUserPersonalId) => (userId: User['id'], data: PostUserPersonalIdData, config: Config) => (dispatch: Dispatch) => Promise; export default createUserPersonalIdsFactory;