import { type Config, type PostReturn, type PostReturnData, type Return } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for creating a return. * * @param postReturn - Post return client. * * @returns Thunk factory. */ declare const createReturnFactory: (postReturn: PostReturn) => (data: PostReturnData, config?: Config) => (dispatch: Dispatch) => Promise; export default createReturnFactory;