import { DateValue } from 'react-aria-components'; import { DatePickerProps } from '../DatePicker.types'; export declare const useDateConstraints: (params: { minDate: DatePickerProps["minDate"]; maxDate: DatePickerProps["maxDate"]; allowPastDates: boolean; allowFutureDates: boolean; withTime: boolean; }) => { minValue: DateValue | undefined; maxValue: DateValue | undefined; };