import { AriaDateRangePickerProps, DateValue } from 'react-aria/useDateRangePicker'; import { FocusableRef } from '@react-types/shared'; import React, { ReactElement } from 'react'; import { SpectrumDatePickerBase } from './DatePicker'; export interface SpectrumDateRangePickerProps extends Omit, 'isInvalid' | 'validationState'>, Omit, 'validate'> { } /** * DateRangePickers combine two DateFields and a RangeCalendar popover to allow users * to enter or select a date and time range. */ export declare const DateRangePicker: (props: SpectrumDateRangePickerProps & { ref?: FocusableRef | undefined; }) => ReactElement>;