import { MavSelectionActionUnion } from './actions'; import { MavSelectionState } from './state'; /** * Mavs selection state reducer * @param [state] instance of MavSelectionState * @param action Union of all acceptable action type classes * @returns the new state */ export declare function mavSelectionStateReducer(state: MavSelectionState, action: MavSelectionActionUnion): MavSelectionState;