import { DetailedHTMLProps, FC, HTMLAttributes } from 'react';
export interface RadioButtonsProps extends DetailedHTMLProps<HTMLAttributes<HTMLInputElement>, HTMLInputElement> {
    name?: string;
    id?: string;
    value?: string;
    checked?: any;
}
export declare const RadioButtons: FC<RadioButtonsProps>;
