import React from "react"; import { Indicator } from "../FeedbackIndicator"; import "./radio-group.scss"; export declare type RadioGroupProps = JSX.IntrinsicElements["fieldset"] & { /** The name of the group */ name: string; /** Form indicator */ indicator?: Indicator; /** Disable the whole group */ disabled?: boolean; /** The value of the group */ value?: T; /** On change handler */ onChange?: React.ChangeEventHandler; /** Element label */ label?: React.ReactNode; }; /** A radio button allows a user to select a single item from a predefined list of options. Radio buttons are common to use in forms, i.e when you apply for a loan and need to enter "Yes" or "No". */ export declare const RadioGroup: React.FC;