import { OnInit, EventEmitter } from '@angular/core'; import { UploaderService } from '../../services/uploader.service'; import { IInteractionType } from '../../interfaces/definitions'; import { Storage } from '../../services/storage'; export declare class MediaToolbarComponent implements OnInit { private uploader; uploadFinish: EventEmitter; enableUpload: boolean; storage: Storage; InteractionType: IInteractionType; fileViewer: boolean; maxFileSize: any; allowedFormats: string[]; parseContent: boolean; active: boolean; loadingActive: boolean; loading: boolean; private _timer; types: any[]; dates: any[]; constructor(uploader: UploaderService); ngOnInit(): void; UploaderToggle(): void; upload(): void; IsEditing(): boolean; private findDates; InputChange(value: string): void; actualFetch(): void; }