import React from 'react'; import './index.less'; /** * @description 日期 */ declare type Value = Date[]; export declare type DateRangePopupProps = { /** * @description 选中项 */ value?: Value; /** * @description 默认选中项 */ defaultValue?: Value; onCancel?: () => void; onClose?: () => void; visible?: boolean; title?: React.ReactNode; onConfirm?: (value: Value) => void; }; /** * @Author: wangyi * @Date: 2022-02-18 */ declare const DateRangePopup: React.FC; export default DateRangePopup;