import { ISelectBaseState, ISelectBaseConfig, SelectBaseControlActionType, SelectBaseControlEventType } from '../common/select/typings'; import { IInitialStateParams } from '@mjcloud/redux'; export declare type RadioButtonsActionType = SelectBaseControlActionType; export declare type RadioButtonsEventType = SelectBaseControlEventType; export interface IRadioButtonsInitialStateParams extends IInitialStateParams { } export interface IRadioButtonsConfig extends ISelectBaseConfig { theme: string; } export interface IRadioButtonsState extends ISelectBaseState { theme: string; activeIndex: number; }