import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type DatePickerProps = { allowInput?: boolean; aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; defaultDate?: string; disableDate?: number[]; disableInput?: boolean; disableRange?: number[]; disableWeekdays?: number[]; enableTime?: boolean; error?: string; format?: string; hideIcon?: boolean; hideLabel?: boolean; id?: string; inLine?: boolean; inputAria?: { [key: string]: string; }; inputData?: { [key: string]: string; }; inputOnChange?: (e: React.FormEvent) => void; inputValue?: string; label?: string; maxDate: string; minDate: string; name: string; pickerId?: string; placeholder?: string; positionElement?: HTMLElement | null; scrollContainer?: string; selectionType?: "month" | "week" | "quickpick"; showTimezone?: boolean; staticPosition: boolean; thisRangesEndToday?: boolean; timeFormat?: string; type?: string; yearRange?: number[]; } & GlobalProps; declare const DatePicker: (props: DatePickerProps) => React.ReactElement; export default DatePicker;