/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// import Component from '../../react-class'; import { NAV_KEYS } from './MonthView'; export default class Calendar extends Component { constructor(props: any); getDOMNode(): any; prepareDate(props: any): import("moment").Moment; render(): JSX.Element; isMonthDecadeViewVisible(): any; renderChildren([navBar, inner, footer]: [any, any, any]): JSX.Element; focus(): void; isFocused(): any; onViewKeyDown(...args: any[]): void; isTimeInputFocused(): any; renderClockInput(): JSX.Element; onClockInputFocus(): void; onClockInputBlur(): void; onClockInputMouseDown(event: any): void; onTimeChange(value: any, timeFormat: any): void; onChange(dateString: any, { dateMoment, timestamp, noCollapse }: { dateMoment: any; timestamp: any; noCollapse: any; }, event: any): void; } export { NAV_KEYS };