import React from "react"; export interface RadioProps extends React.InputHTMLAttributes { name: string; value: string | number; text?: string; info?: string; isError?: boolean; innerRef?: React.Ref; } /** * @deprecated Use `LabeledRadio` components in a `LabeledRadioGroup` instead. * * E.g. with React Hook Form: * * @example * ```tsx * * * * * ``` */ export declare const RadioV2: React.ForwardRefExoticComponent>;