import { FormItemProps } from 'antd'; import * as React from 'react'; import './style.less'; interface TimeIntervalProps { supportNextDay?: boolean; disabled?: boolean; maxCount?: number; formItemProps?: FormItemProps; addButtonName?: string; } declare const TimeInterval: React.NamedExoticComponent; export default TimeInterval;