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