import * as React from 'react'; import './radiobuttoninput.style.css'; export interface TRadioButtonProps { name: string; children: string; value: number; className?: string; labelStyle?: string; isDisabled?: boolean; isChecked?: boolean; onChange?: (event: any) => void; } export declare const Radiobutton: React.StatelessComponent;