import { type Config, type PostPhoneToken, type PostPhoneTokenData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Creates a new phone token. * * @param postPhoneToken - Post phone token client. * * @returns Thunk factory. */ declare const createPhoneTokenFactory: (postPhoneToken: PostPhoneToken) => (data: PostPhoneTokenData, config?: Config) => (dispatch: Dispatch) => Promise; export default createPhoneTokenFactory;