import { DomSanitizer, SafeUrl } from '@angular/platform-browser'; import { OnInit } from '@angular/core'; import { IAddToCalendar } from './add.to.calendar.interface'; export declare class AddToCalendarSharedComponent implements OnInit { private sanitizer; event: IAddToCalendar; calendars: any; open: boolean; MS_IN_MINUTES: number; constructor(sanitizer: DomSanitizer); ngOnInit(): void; sanitize(url: string): SafeUrl; formatTime(date: any): string; calculateEndTime(event: any): string; google(event: any): string; yahoo(event: any): string; ics(event: any): string; ical(event: any): string; outlook(event: any): string; generateCalendars(event: any): object; }