zent
Version:
一套前端设计语言和基于React的实现
14 lines (13 loc) • 407 B
TypeScript
/// <reference types="react" />
import { IRadioProps } from './AbstractRadio';
import RadioGroup from './Group';
import RadioButton from './RadioButton';
declare function Radio<Value>(props: IRadioProps<Value> & {
labelStyle?: React.CSSProperties;
}): JSX.Element;
declare namespace Radio {
var Button: typeof RadioButton;
var Group: typeof RadioGroup;
}
export { Radio };
export default Radio;