import { type Config, type PostToken, type PostTokenData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Creates a user token. * * @param postTokens - Post user token client. * * @returns Thunk factory. */ declare const createUserTokenFactory: (postTokens: PostToken) => (data: PostTokenData, config?: Config) => (dispatch: Dispatch) => Promise; export default createUserTokenFactory;