/** * 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'; export default class YearView extends Component { constructor(props: any); getMonthsInYear(value: any): import("moment").Moment[]; toMoment(date: any): import("moment").Moment; render(): JSX.Element; renderMonths(props: any, months: any): JSX.Element[]; format(mom: any, format: any): any; renderMonth(props: any, dateMoment: any): JSX.Element; handleClick({ timestamp, dateMoment }: { timestamp: any; dateMoment: any; }, event: any): void; onKeyDown(event: any): void; confirm(date: any, event: any): any; navigate(direction: any, event: any): any; select({ dateMoment, timestamp }: { dateMoment: any; timestamp: any; }, event: any): any; onViewDateChange({ dateMoment, timestamp }: { dateMoment: any; timestamp: any; }): void; gotoViewDate({ dateMoment, timestamp }: { dateMoment: any; timestamp: any; }): void; onActiveDateChange({ dateMoment, timestamp }: { dateMoment: any; timestamp: any; }): void; onChange({ dateMoment, timestamp }: { dateMoment: any; timestamp: any; }, event: any): void; focus(): void; getDOMNode(): any; }