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