import React, { FC } from 'react'; import { Dayjs } from 'dayjs/index'; export type IDatepicker = { /** 宽度 */ width?: number | string; /** 模式:日期、日期范围、时间 */ mode?: 'date' | 'dateRange' | 'time'; /** 选择变化的回调函数 */ onChange?: (e: IDatepicker['mode'] extends 'dateRange' ? Dayjs[] : Dayjs) => void; /** 提示语 */ placeholder?: string; className?: string; style?: React.CSSProperties; }; declare const DatePicker: FC; export { DatePicker };