import { type Config, type PostGuestUser, type PostGuestUserData } from '@farfetch/blackout-client'; import type { CreateGuestUserAction } from '../../types/index.js'; import type { Dispatch } from 'redux'; /** * Creates a new guest user. * * @param postGuestUser - Post guest user client. * * @returns Thunk factory. */ declare const createGuestUserFactory: (postGuestUser: PostGuestUser) => (data: PostGuestUserData, config?: Config) => (dispatch: Dispatch) => Promise; export default createGuestUserFactory;