tdesign-react
Version:
TDesign Component for React
9 lines (8 loc) • 408 B
TypeScript
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;