import * as React from 'react'; import { CommonProps } from '../../'; import * as types from '../../types'; export interface DatePickerProps extends CommonProps { componentId: string; className?: string; onQueryChange?: (...args: any[]) => any; style?: types.style; // non-common props clickUnselectsDay?: boolean; dataField: string; dayPickerInputProps?: types.props; defaultSelected?: types.date; filterLabel?: string; focused?: boolean; initialMonth?: types.dateObject; innerClass?: types.style; numberOfMonths?: number; placeholder?: string; queryFormat?: types.queryFormatDate; react?: types.react; showClear?: boolean; showFilter?: boolean; theme?: types.style; title?: string; } declare const DatePicker: React.ComponentType; export default DatePicker;