import React from "react"; import { TimePrecision } from "@blueprintjs/datetime"; import "@blueprintjs/datetime/lib/css/blueprint-datetime.css"; import "./styles.css"; export declare const TimePrecisions: { MILLISECOND: "millisecond"; SECOND: "second"; MINUTE: "minute"; }; interface DatePickerComponentProps { maxDate: Date; minDate: Date; placeholder: string; showActionsBar?: boolean; timePrecision?: TimePrecision; closeOnSelection?: boolean; highlightCurrentDay?: boolean; value: Date | null; onChange?: (selectedDate: Date | null, isUserChange: boolean) => void; formatDate?: (date: Date) => string; parseDate?: (dateStr: string) => Date | null; tabIndex?: number; inputRef?: React.RefObject; } declare function DatePickerComponent(props: DatePickerComponentProps): JSX.Element; declare namespace DatePickerComponent { var defaultProps: { highlightCurrentDay: boolean; }; } export default DatePickerComponent;