import { type Config, type PostUser, type PostUserData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Performs the register operation for a new user. * * @param postUser - Post user client. * * @returns Thunk factory. */ declare const registerFactory: (postUser: PostUser) => (data: PostUserData, config?: Config) => (dispatch: Dispatch) => Promise; export default registerFactory;