import * as React from 'react'; interface RadioProps { /** * The label for the radio button */ label?: string; /** * Whether the radio is selected */ checked?: boolean; /** * Callback when selection changes */ onChange?: (checked: boolean) => void; /** * Whether the radio is disabled */ disabled?: boolean; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; /** * Name attribute for form submission (groups radios together) */ name?: string; /** * Value attribute for form submission */ value?: string; } /** * Radio component - Arbor Design System * * A radio button input with label support. */ declare const Radio: React.ForwardRefExoticComponent>; export { Radio, type RadioProps };