import type { Dispatch } from 'redux'; import type { SubAreaType } from '../types/subArea.types.js'; /** * Resets the specific sub-area or the general authentication area error if no * sub-area is specified. * * @param subArea - Subarea to be reset. */ declare const resetAuthentication: (subArea?: SubAreaType) => (dispatch: Dispatch) => void; export default resetAuthentication;