import * as React from 'react'; import { Switchable, SwitchGroupItem } from '../switch-group'; import { IGlobalAttributes, IReferenceable, ICustomizable } from '../core'; export interface RadioButtonProps extends IGlobalAttributes, IReferenceable, Switchable, ICustomizable { label?: React.ReactNode; labelPositionReverse?: boolean; disabled?: boolean; autoFocus?: boolean; } export declare const RadioButton: SwitchGroupItem;