import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare class AnimaxDatePickerComponent implements OnInit { label?: string; placeholder: string; value?: Date | null; valueChange: EventEmitter; open: boolean; currentYear: number; currentMonth: number; calendarDays: { date: Date; muted: boolean; }[]; week: string[]; monthNames: string[]; panelRef?: ElementRef; ngOnInit(): void; toggle(): void; closeOnOutside(e: MouseEvent): void; buildCalendar(): void; prevMonth(): void; nextMonth(): void; select(d: Date): void; isSelected(d: Date): boolean; get displayValue(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }