import { default as React } from 'react'; import { WrappedComponentProps } from 'react-intl'; import { WithTranslations } from '../../../DateRangePicker.types'; import { Days } from '../../../date.types'; import { ValueSelectionModes, WithDisabledProp } from '../../RangeFilter.types'; import { RangeDisplayMode } from '../../Shared/TimeWindow/RangeFormContainer/RangeForm/RangeForm.types'; import { RangeActions as RangeActionsMethods } from '../../Shared/TimeWindow/TimeWindow.types'; export interface Props extends WrappedComponentProps, Partial, WithTranslations, WithDisabledProp { value: string; onChange: (v: Days) => void; rangeDisplayMode?: RangeDisplayMode; valueSelectionModes: ValueSelectionModes; } declare const _default: React.FC> & { WrappedComponent: React.ComponentType; }; export default _default;