import React from 'react'; import { TooltipProps } from './Tooltip'; import { SelectedRadioValue } from './types'; export interface BaseRadioButtonProps extends Omit, 'value'> { /** Additional props passed to the label element */ labelProps?: React.ComponentProps<'label'>; /** The selected value of the radio button set */ selectedValue?: SelectedRadioValue; /** The value of the radio button */ value: string; /** Tooltip providing further detail about the choice */ tooltip?: string; tooltipProps?: TooltipProps; } export declare const BaseRadioButton: React.ForwardRefExoticComponent>;