import { JSX } from 'react/jsx-runtime'; import { AriaDateRangePickerProps, DateValue } from "react-aria"; import { ControlInputProps } from "../Control/Control"; import { InputAttachmentProps } from "../Input/Input"; export interface DateRangePickerProps extends AriaDateRangePickerProps, ControlInputProps, InputAttachmentProps { /** * Determines whether the date picker popover should close automatically when a date is selected. * @default true */ shouldCloseOnSelect?: boolean | (() => boolean); } export declare function DateRangePicker(props: DateRangePickerProps): JSX.Element; //# sourceMappingURL=DateRangePicker.d.ts.map