import React from 'react'; import { RangePickerProps } from 'antd/es/date-picker'; import { Moment } from 'moment'; export type Props = Omit & { disabled?: boolean; foreverText?: string; foreverDate?: string; otherProps?: any; onChange?: HandleChange; value?: ValueStr; format?: string; separator?: any; isView?: boolean; }; type Value = [Moment?, Moment?, boolean?]; type ValueStr = [string?, string?, string?]; type HandleChange = (value: ValueStr | null, valueStr: Value | null) => void; declare const ProRangeLimit: React.FC; export default ProRangeLimit;