import React, { FunctionComponent } from "react"; export interface RadioButtonProps extends Omit, HTMLInputElement>, "type" | "onClick"> { group: string; id: string; label: string; onClick?: (selected: string) => void; } export declare const RadioButton: FunctionComponent;