UNPKG

tdesign-react

Version:
9 lines (8 loc) 408 B
import React from 'react'; import { CheckProps } from '../common/Check'; export type RadioProps = Omit<CheckProps, 'type'>; declare const Radio: React.FunctionComponent<RadioProps & React.RefAttributes<HTMLLabelElement>> & { Group: React.FC<import("./RadioGroup").RadioGroupProps>; Button: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLLabelElement>>; }; export default Radio;