import * as React from 'react'; export interface DatePickerProps { width?: string; defaultValue?: any; className?: string; disabled?: any; allowClear?: boolean; onChange?: any; value?: any; format?: any; showTime?: any; title?: string; titleOrientation?: "Top" | "Right" | "Bottom" | "Left"; titleTextAlign?: "center" | "left" | "right"; titleWidth?: string; titleClassName?: string; getCalendarContainer?: () => HTMLElement; required?: boolean; style?: any; hidden?: boolean; id?: string; ref?: any; placeholder?: any; onClick?: React.MouseEventHandler; } declare const NeoDatePicker: React.ForwardRefExoticComponent & React.RefAttributes>; export default NeoDatePicker;