import { ISelectBaseState, ISelectBaseConfig, SelectBaseControlActionType, SelectBaseControlEventType } from '../common/select/typings'; import { IInitialStateParams } from '@mjcloud/redux'; export declare type RadioActionType = SelectBaseControlActionType; export declare type RadioEventType = SelectBaseControlEventType; export interface IRadioInitialStateParams extends IInitialStateParams { } export interface IRadioConfig extends ISelectBaseConfig { } export interface IRadioState extends ISelectBaseState { }