import type { Dispatch } from 'redux'; /** * Reset search intents state to its initial value. * * @returns Thunk factory. */ declare const resetSearchIntents: () => (dispatch: Dispatch) => void; export default resetSearchIntents;