import { default as React } from 'react'; import { DatePickerProps as AriaDatePickerProps, DateValue } from 'react-aria-components'; interface DatePickerProps extends Omit, "granularity" | "hourCycle" | "firstDayOfWeek"> { time?: boolean; label?: string; popoverClassName?: string; } declare function DatePicker({ label, time, minValue, defaultValue, shouldCloseOnSelect, popoverClassName, ...props }: Readonly): React.JSX.Element; export default DatePicker;