UNPKG

zent

Version:

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

6 lines (5 loc) 417 B
/// <reference types="react" /> import { IDatePickerProps, SingleDate, IValueType } from '../../date-picker'; import { IFormComponentProps } from '../shared'; export declare type IFormDatePickerField<T extends IValueType> = IFormComponentProps<SingleDate, Omit<IDatePickerProps<T>, 'value'>>; export declare const FormDatePickerField: <T extends IValueType = "string">(props: IFormDatePickerField<T>) => JSX.Element;