import { type Config, type PostUserPersonalIdImage, type PostUserPersonalIdImageData, type User, type UserPersonalIdImage } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for creating a personal id image. * * @param postUserPersonalIdImage - Post user attribute client. * * @returns Thunk factory. */ declare const createUserPersonalIdImageFactory: (postUserPersonalIdImage: PostUserPersonalIdImage) => (userId: User['id'], data: PostUserPersonalIdImageData, config: Config) => (dispatch: Dispatch) => Promise; export default createUserPersonalIdImageFactory;