import { type Config, type GetUserPersonalId, type User, type UserPersonalId } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Get a specific personal id. * * @param getUserPersonalId - Get a specific personal id client. * * @returns Thunk factory. */ declare const fetchUserPersonalIdFactory: (getUserPersonalId: GetUserPersonalId) => (userId: User['id'], personalId: string, config: Config) => (dispatch: Dispatch) => Promise; export default fetchUserPersonalIdFactory;