import { type DateValue } from '@internationalized/date'; interface Props { value?: DateValue | null; open?: boolean; min?: DateValue; max?: DateValue; locale?: string; timeZone?: string; dateOptions?: Intl.DateTimeFormatOptions; placeholder?: string; disabled?: boolean; required?: boolean; closeOnSelect?: boolean; isDateDisabled?: (date: DateValue) => boolean; class?: string; inputClass?: string; popoverClass?: string; calendarClass?: string; headerClass?: string; gridClass?: string; weekdayClass?: string; dayClass?: string; monthClass?: string; yearClass?: string; 'aria-label'?: string; 'aria-labelledby'?: string; onSelect?: (date: DateValue) => void; } declare const DatePicker: import("svelte").Component; type DatePicker = ReturnType; export default DatePicker;