import React from 'react'; import { SelectedRadioValue } from './types'; export interface RadioSwitchProps extends Omit, 'value'> { /** Additional class names applied to both radio buttons */ className?: string; /** The label of the choice to the left */ leftLabel: string; /** The value of the choice to the left */ leftValue: string /** Ref-setting function, or ref created by useRef, passed to the input element */; /** Ref to left radio */ leftInnerRef?: React.Ref; /** The label of the choice to the right */ rightLabel: string; /** The value of the choice to the right */ rightValue: string; /** Ref to right radio */ rightInnerRef?: React.Ref; /** The selected value of the radio button set */ selectedValue?: SelectedRadioValue; /** Condensed modifier. Use in condensed designs */ condensed?: boolean; } export declare const RadioSwitch: React.FC;