import React from 'react'; import Radio from './Radio'; import RadioButton from './RadioButton'; import { RadioGroupProps, RadioGroupState } from "./iRadio"; declare class RadioGroupWrapper extends React.Component, RadioGroupState> { render(): JSX.Element; } type RadioType = typeof Radio; interface RadioInterface extends RadioType { Group: typeof RadioGroupWrapper; Button: typeof RadioButton; } declare const RadioWrapper: RadioInterface; export default RadioWrapper;