import type React from 'react'; import { type BaseSelectableCardProps } from './selectable-card-base'; export interface RadioCardProps extends BaseSelectableCardProps { /** * The value that will be submitted with the form data if the radio is selected. * * @default 'on' * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio#data_representation_of_a_radio_group */ value?: string; /** * Whether the input is disabled. */ disabled?: boolean; /** * Fires if the input fails validation on form submit. */ onInvalid?: React.FormEventHandler; /** * Focus event handler. */ onFocus?: React.FocusEventHandler; /** * Blur event handler. */ onBlur?: React.FocusEventHandler; /** * ARIA label for the input. */ 'aria-label'?: string; /** * ARIA describedby for the input. */ 'aria-describedby'?: string; /** * ARIA invalid state. */ 'aria-invalid'?: boolean; } export declare const RadioCard: React.ForwardRefExoticComponent>;