import * as React from 'react'; import { InputOption } from './InputOption'; export declare type OnSelection = (item: any) => void; export interface Props { options?: Array; defaultSelection?: string; reset?: boolean; inline?: boolean; onSelection?: OnSelection; } export interface State { defaultSelection: string; selected: string; } export declare class RadioButtons extends React.Component { static defaultProps: Props; constructor(props: any); componentDidUpdate(): void; onActionSelected: (e: React.SyntheticEvent) => void; render(): JSX.Element; }