/** Autogenerated by public2business schematic. DO NOT CHANGE! */ import { AfterViewInit } from '@angular/core'; import { SbbCalendar } from '../calendar/calendar.component'; import { SbbDatepicker } from '../datepicker/datepicker.component'; /** * Component used as the content for the datepicker dialog and popup. We use this instead of using * SbbCalendar 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 SbbDatepickerContent implements AfterViewInit { /** Reference to the internal calendar component. */ calendar: SbbCalendar; /** Reference to the datepicker that created the overlay. */ datepicker: SbbDatepicker; /** Whether the datepicker is above or below the input. */ isAbove: boolean; ngAfterViewInit(): void; }