import { ChangeEvent, ReactNode } from "react"; export interface RadioProps extends React.InputHTMLAttributes { /** * State controlling activated radio group */ model: string | boolean | number; /** * Use onChange event Handler to set new value of model */ onChange?: (e: ChangeEvent) => void; /** * If checked */ checked?: boolean; /** * Label of the radio checkbox */ label?: string | false; /** * Replace with an icon */ icon?: ReactNode; } declare const Radio: import("react").ForwardRefExoticComponent>; export default Radio;