import { AppSharedState } from '../state.models'; import { ActionMapLayerRemove } from '../state.models.actions'; /** * Reducer handler to remove a layer from a map's rendering layers. * * @param {AppSharedState} state - The current application state. * @param {ActionMapLayerRemove} action - The action containing the payload with mapKey and layerKey. * @returns {AppSharedState} The updated application state with the specified layer removed from the map. * @throws {Error} If the payload is missing or the map with the specified key is not found. */ export declare const reduceHandlerMapLayerRemove: (state: T, action: ActionMapLayerRemove) => T;