import { EventEmitter } from "../../stencil-public-runtime"; import { Moment } from 'moment'; export declare class Datepicker { value: string; format: string; locale: string; inline: boolean; valueAsMoment: Moment; currentMonth: number; currentMonthAsString: string; currentYear: number; currentDays: Array; weeks: Array>; weekdays: string[]; datepickerClosed: EventEmitter; render(): any; hostData(): { class: string; }; private renderNavigation; private renderWeekdays; private renderDays; componentWillLoad(): void; prevMonth(): void; nextMonth(): void; private selectFirstOfMonth; private selectMonth; private selectDay; private close; private chunk; private handleClickOutside; private forceInlineState; private isActive; }