import * as React from "react"; import { DateInputProps, DateInputState } from "./typings/DateInput"; export default class DateInput extends React.PureComponent { static defaultProps: { placement: string; }; state: Readonly; static getDerivedStateFromProps(props: DateInputProps, state: DateInputState): Partial | null; private onCalendarDateChange; private onInputChange; render(): JSX.Element; } export declare class BrowserBasedDateInput extends React.PureComponent { static contextType: React.Context; render(): JSX.Element; }