import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { CalendarMonth } from '../../datepicker.models'; import type { CalendarType } from '../../datepicker.models'; import '@sebgroup/green-core/components/icon/icons/chevron-left.js'; import '@sebgroup/green-core/components/icon/icons/chevron-right.js'; import * as i0 from "@angular/core"; export declare class CalendarControlComponent implements OnInit, OnChanges, OnDestroy { private fb; calendarChange: EventEmitter; activeCalendar: CalendarMonth; locale: string | undefined; type: CalendarType; monthArray: Date[]; yearArray: Date[]; selectedCalendar: UntypedFormGroup; private subs; constructor(fb: UntypedFormBuilder); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; ngOnDestroy(): void; viewPreviousMonth(): void; viewNextMonth(): void; viewPreviousYear(): void; viewNextYear(): void; keyNavigation(event: KeyboardEvent): void; private subscribeToFormChanges; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }