import React, { type InputHTMLAttributes } from 'react'; import type { BaseProps } from '../../component-helpers'; export type RadioProps = { /** * Apply inactive visual appearance to the Radio */ disabled?: boolean; /** * Indicates whether the Radio must be checked */ required?: boolean; /** * A unique value that is never shown to the user. * Used during form submission and to identify which Radio inputs are selected */ value?: string; } & Exclude, 'value'> & BaseProps; export declare const Radio: React.ForwardRefExoticComponent & React.RefAttributes>;