import { AppSharedState } from '../state.models'; import { OneOfStateActions } from '../state.models.actions'; /** * Reducer handler to remove a mapSet by key. * * @param {AppSharedState} state - The current application shared state. * @param {OneOfStateActions} action - The dispatched action, expects payload with mapSetKey. * @returns {AppSharedState} The new state with the specified mapSet removed. * @throws {Error} If payload or mapSetKey is not provided. */ export declare const reduceHandlerMapSetRemove: (state: T, action: OneOfStateActions) => T;