import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import { LCDatePickerControl } from '../lc-date-picker-control'; import { ICalendarItem } from '../base-date-picker.class'; import { YearPicker } from './year-picker.class'; import * as i0 from "@angular/core"; export declare class LCYearPickerComponent implements OnInit, AfterViewInit, OnDestroy { private readonly cd; private readonly datePicker; private readonly ngZone; private readonly renderer; calendarData: ICalendarItem[][]; private readonly subscriptions; control: LCDatePickerControl; yearPickerElement: ElementRef; previousYearsButtonElement: ElementRef; nextYearsButtonElement: ElementRef; resetElement: ElementRef; constructor(cd: ChangeDetectorRef, datePicker: YearPicker, ngZone: NgZone, renderer: Renderer2); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; previousYears(): void; nextYears(): void; yearScroll(event: WheelEvent): void; private setupSubscriptions; private navigate; private initializeCalendar; private registerViewEvents; private setStyles; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }