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