import * as React from 'react'; import { FC } from 'react'; export type IRadio = { /** 单选radio的各个选项 */ options: { label: string; value: string | number; disabled?: boolean }[]; /** 选择radio选项之后的回调函数 */ onChange: (value: string | number) => void; /** 指定当前选中的值 */ value?: string | number; /** 默认选中的值 */ defaultValue?: string | number; /** radio的排列反向 */ direction?: 'vertical' | 'horizontal'; /** 展示为button样式 */ radioButton?: boolean; /** RadioButton的外观样式 */ radioButtonStyle?: 'stroke' | 'solid'; className?: string; style?: React.CSSProperties; }; declare const Radio: FC; export { Radio };