UNPKG

zent

Version:

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

9 lines (8 loc) 386 B
/// <reference types="react" /> import { IDatePickerPanelProps } from './index'; import { IShowTimeOptionWithDefault } from '../../types'; interface IDatePickerFooterProps extends Omit<IDatePickerPanelProps, 'popText' | 'hideFooter'> { showTimeOption?: IShowTimeOptionWithDefault; } declare const DatePickerFooter: React.FC<IDatePickerFooterProps>; export default DatePickerFooter;