import { type DateValue } from '@internationalized/date'; import { type DateRangeValue } from '../date-range/DateRange.svelte'; interface Props { start?: DateValue | null; end?: DateValue | null; open?: boolean; min?: DateValue; max?: DateValue; locale?: string; timeZone?: string; dateOptions?: Intl.DateTimeFormatOptions; placeholder?: string; separator?: string; disabled?: boolean; required?: boolean; closeOnSelect?: boolean; numberOfMonths?: 1 | 2; isDateDisabled?: (date: DateValue) => boolean; class?: string; inputClass?: string; popoverClass?: string; rangeClass?: string; monthsClass?: string; calendarClass?: string; headerClass?: string; gridClass?: string; weekdayClass?: string; dayClass?: string; monthClass?: string; yearClass?: string; 'aria-label'?: string; 'aria-labelledby'?: string; onChange?: (range: DateRangeValue) => void; } declare const DateRangePicker: import("svelte").Component; type DateRangePicker = ReturnType; export default DateRangePicker;