UNPKG

zent

Version:

一套前端设计语言和基于React的实现

8 lines (7 loc) 390 B
/// <reference types="react" /> import { IRadioGroupProps } from '../../radio'; import { IFormComponentProps } from '../shared'; export declare type IFormRadioGroupFieldProps<T> = IFormComponentProps<T | null, Omit<IRadioGroupProps<T>, 'value'>> & { children?: React.ReactNode; }; export declare function FormRadioGroupField<T>(props: IFormRadioGroupFieldProps<T | null>): JSX.Element;