import React from 'react'; import { SingleDatePickerShape } from 'react-dates'; import 'react-dates/initialize'; import 'react-dates/lib/css/_datepicker.css'; import { TextFieldProps } from '../TextField'; import { Style } from './DatePicker.style'; declare type DatePickerWrapperProps = Omit & { inputRef?: React.RefObject; format?: string; onDateChange: (date: string, format: string) => void; onFocusChange: (focused: boolean) => void; }; export declare type DatePickerProps = { date: string; } & Style & Pick & Partial> & Pick; declare const _default: React.ComponentType, "id" | "children" | "date" | "label" | "fullWidth" | "format" | "required" | "focused" | "onDateChange" | "onFocusChange" | "regular" | "anchorDirection" | "openDirection" | "appendToBody" | "numberOfMonths" | "isOutsideRange"> & import("@material-ui/core/styles/withStyles").StyledComponentProps<"outlined" | "textField" | "@global">>; export default _default; //# sourceMappingURL=DatePicker.d.ts.map