import * as React from 'react'; type Value = string | number | boolean; interface IRadio { id: string; name: string; label: string; value: Value; selected: string; onChange: (value: Value) => void; } export declare const Radio: (props: IRadio) => React.JSX.Element; export {}; //# sourceMappingURL=Radio.d.ts.map