import type { Dispatch } from 'redux'; import type { Order } from '@farfetch/blackout-client'; /** * Reset orders details slice state only * to its initial value. * * @param orderIds - Order ids whose state should be reset. * * @returns - Thunk. */ declare const resetOrderDetails: (orderIds?: Array) => (dispatch: Dispatch) => void; export default resetOrderDetails;