UNPKG

zent

Version:

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

6 lines (5 loc) 355 B
/// <reference types="react" /> import { ICheckboxProps } from '../../checkbox'; import { IFormComponentProps } from '../shared'; export declare type IFormCheckboxFieldProps<Value> = IFormComponentProps<boolean, Omit<ICheckboxProps<Value>, 'checked'>>; export declare function FormCheckboxField<Value>(props: IFormCheckboxFieldProps<Value>): JSX.Element;