import React from 'react'; interface Props { value?: string | number; defaultValue?: string; disabled?: boolean; onChange?: (value: any) => void; } declare type NativeAttrs = Omit, keyof Props>; export declare type RadioGroupProps = Props & NativeAttrs; export declare const RadioGroup: React.FC>; export {}; //# sourceMappingURL=RadioGroup.d.ts.map