import { ReactElement } from 'react'; import { RadioGroupProps, RadioProps } from './types'; export declare const Radio: { (props: RadioProps): ReactElement; displayName: string; }; export declare const RadioGroup: { (props: RadioGroupProps): ReactElement; displayName: string; };