import Store from '@mjcloud/redux'; import SelectReduceBase from '../common/select/reduce'; import { IRadioButtonsState, IRadioButtonsInitialStateParams } from './typings'; export declare class RadioButtonsReduce extends SelectReduceBase { initialState(store: Store, params: IRadioButtonsInitialStateParams): IRadioButtonsState; loaded(store: Store, params: any): IRadioButtonsState; updateActiveIndex(store: Store, params: { activeIndex: number; }): IRadioButtonsState; } declare const _default: RadioButtonsReduce; export default _default;