import React from "react"; import { CalendarProps } from 'react-calendar'; import Calendar from "react-calendar"; declare type CalendarProps = React.ComponentProps; export declare type DateTimePickerProps = CalendarProps & { anchorElement?: HTMLElement; defaultValues: Array; placement?: "bottom-end"; defaultTimeValues: { toTime: string; fromTime: string; }; onClose(): void; open?: boolean; handleSave: (date: Array, time: { toTime: string; fromTime: string; }) => void; includeTime?: boolean; includeDate?: boolean; }; export {};