import * as React from 'react'; import 'date-fns'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; import '../../../index.scss'; export interface HIDDatePickerProps extends HIDComponentProps { /** Callback function for datepicker when date is selected.*/ callback: (date: any) => void; /** The variant to use.*/ variant?: 'default' | 'inline'; /**Initial date provided.*/ initialDate?: string; } export interface HIDDatePickerState { selectedDate?: any; } /** * ### The API documentation of the HID DatePicker React component. Learn more about the properties and the API Methods. * */ export default class HIDDatePicker extends React.Component { state: HIDDatePickerState; private handleChange; private getDefaultDatePicker; private getInlineDatePicker; private getDatePicker; render(): JSX.Element; }