import React from 'react'; import { TimeRangePickerProps } from 'antd'; import { BizFormItemProps } from './Item'; import { TNames } from '../_util/transform'; export interface BizFormItemTimeRangeProps extends BizFormItemProps, Pick { format?: string; timeRangePickerProps?: Omit & { format?: string; }; names?: TNames; } declare const BizFormItemTimeRange: React.FC; export default BizFormItemTimeRange;