/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Component } from 'react'; declare class InovuaRadioButtonGroup extends Component { constructor(props: any); getCleanChild(child: any, idx: any): any; onRadioChildChange(radioValue: any): void; setValue(radioValue: any): void; getValue(): any; getName(): any; getProps(props: any, state: any): any; renderHiddenInput(): JSX.Element | null; _attachEventHandler(key: any, handler: any, propagatedProps: any): void; setKeyboardNavigationProps(computedRBGDOMProps: any): void; onFocus(event: any): void; onBlur(): void; onKeyDown(ev: any): void; render(): JSX.Element; } declare const WrappedRadioInput: (props: any) => JSX.Element; declare const WrappedCheckBox: (props: any) => JSX.Element; export default InovuaRadioButtonGroup; export { WrappedRadioInput as RadioButton, WrappedCheckBox as CheckBox };