import { FC } from 'react'; import { GenericCheckboxProps } from '@befe/brick-comp-checkbox'; export interface RadioProps extends Omit { /** * 自定义 class */ className?: string; } export declare const Radio: FC;