import { type Config, type PatchReturn, type PatchReturnData, type Return } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for updating the pickup schedule of a return. * * @param patchReturn - Patch return client. * * @returns Thunk factory. */ declare const updateReturnFactory: (patchReturn: PatchReturn) => (returnId: Return['id'], data: PatchReturnData, config?: Config) => (dispatch: Dispatch) => Promise; export default updateReturnFactory;