import React from 'react'; import { SwitchBaseProps } from '../SwitchBase'; export interface Props extends SwitchBaseProps { disabled?: boolean; checked?: boolean; children?: React.ReactNode; } /** * 单选框组件(只有图标)。推荐使用`Radio`组件。 */ declare function RadioButton(props: Props): JSX.Element; export default RadioButton;