import type { RangePickerProps } from 'antd/es/date-picker'; import React from 'react'; import { ProFormOtherProps } from '../../../propsType'; export type Props = { otherProps?: ProFormOtherProps; separator?: any; showTime?: any; isView?: boolean; } & Omit; declare const RangePicker: React.FC; export default RangePicker;