import * as React from 'react'; import { InputProps, InputChangeEvent } from '../../common'; export declare type RadioButtonGroupChangeEvent = InputChangeEvent; export interface RadioButtonGroupProps extends InputProps> { /** * Sets the group's children. */ children?: React.ReactNode; multiple?: boolean; } export declare type StateValue = Array | string | undefined; export interface RadioButtonGroupState { controlled: boolean; value: StateValue; error?: React.ReactChild; } /** * The radio button group manages a group of radio buttons. */ export declare const RadioButtonGroup: React.SFC;