import React from 'react'; import { FormControlWithLabelProps } from '@sinoui/core/FormControlLabel'; export type RadioProps = FormControlWithLabelProps & RadioExtendProps; export interface RadioExtendProps { /** * 添加自定义类名 */ className?: string; /** * 点击时的回调函数 */ onClick?: (event: React.MouseEvent) => void; /** * 错误状态 */ error?: any; /** * 设置为`true`,表示密集模式。 */ dense?: boolean; id?: string; } /** * 带文字的单选按组件。 */ declare const Radio: React.SFC & RadioExtendProps>; export default Radio;