import React from "react"; import { Indicator } from "../FeedbackIndicator"; import "./radio-button.scss"; export declare type RadioButtonProps = Omit & { /** Radio button value */ value?: T; indicator?: Indicator; /** Props for the div wrapper around the radio input element */ wrapperProps?: JSX.IntrinsicElements["div"]; }; /** 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 RadioButton: React.FC;