import React from 'react'; import './react-minimal-datetime-range.css'; export interface CalendarPickerProps { show?: boolean; locale?: string; allowPageClickToClose?: boolean; defaultDate?: string; style?: React.CSSProperties; defaultTimes?: Array; enableTimeSelection?: boolean; markedDates?: Array; supportDateRange?: Array; duration?: number; onClose?: () => void; onYearPicked?: (res: object) => void; onMonthPicked?: (res: object) => void; onDatePicked?: (res: object) => void; onResetDate?: (res: object) => void; onResetDefaultDate?: (res: object) => void; handleChooseHourPick?: (res: Array) => void; handleChooseMinutePick?: (res: Array) => void; } export declare const CalendarPicker: React.FC; export interface RangePickerProps { show?: boolean; disabled?: boolean; locale?: string; allowPageClickToClose?: boolean; showOnlyTime?: boolean; defaultDate?: string; placeholder?: Array; defaultDates?: Array; defaultTimes?: Array; initialDates?: Array; initialTimes?: Array; enableTimeSelection?: boolean; markedDates?: Array; supportDateRange?: Array; duration?: number; style?: React.CSSProperties; onConfirm?: (res: Array) => void; onClear?: () => void; onClose?: () => void; onChooseDate?: (res: object) => void; } export declare const RangePicker: React.FC;