import { AfterViewInit } from '@angular/core'; import { CalendarComponent } from '../calendar/calendar.component'; import { DatepickerComponent } from '../datepicker.component'; /** * Component used as the content for the datepicker dialog and popup. We use this instead of using * hcCalendar directly as the content so we can control the initial focus. This also gives us a * place to put additional features of the popup that are not part of the calendar itself in the * future. (e.g. confirmation buttons). * @docs-private */ export declare class DatepickerContentComponent implements AfterViewInit { /** Reference to the internal calendar component. */ _calendar: CalendarComponent; /** Reference to the datepicker that created the overlay. */ datepicker: DatepickerComponent; /** Whether the datepicker is above or below the input. */ _isAbove: boolean; ngAfterViewInit(): void; /** Close the datepicker automatically on selection only if in date mode */ autoClose(): void; }