import * as React from 'react';
import type { StatefulContainerProps, DefaultStatefulProps, State } from './types';
import type { ChangeEvent } from 'react';
declare class StatefulRadioGroupContainer extends React.Component<StatefulContainerProps, State> {
    static defaultProps: DefaultStatefulProps;
    constructor(props: StatefulContainerProps);
    onChange: (e: ChangeEvent<HTMLInputElement>) => void;
    stateReducer: (type: string, e: ChangeEvent<HTMLInputElement>) => void;
    render(): any;
}
export default StatefulRadioGroupContainer;
