import * as React from 'react'; import "./style.css"; interface IRadioProps extends React.Props { value: any; style?: React.CSSProperties; className?: string; } interface IRadioGroupProps extends React.Props { value: any; onChange?: (value: any) => void; style?: React.CSSProperties; className?: string; } export declare function Radio(props: IRadioProps): JSX.Element; export declare namespace Radio { var Group: typeof RadioGroup; } declare function RadioGroup(props: IRadioGroupProps): JSX.Element; export {};