import { EventEmitter, OnInit, OnDestroy } from '@angular/core'; import { NotificationService } from 'verben-ng-ui/src/lib/services'; import { Subscription } from 'rxjs'; import * as i0 from "@angular/core"; interface Button { text: string; bgColor?: string; primarycolor?: string; secondarycolor?: string; fontSize?: string; fontWeight?: string; } export declare class NotificationComponent implements OnInit, OnDestroy { private notificationService; width?: string; height?: string; borderRadius: string; fontSize: string; fontWeight: string; padding: string; content?: string; top: string; bottom: string; buttons: Button[]; timeout: number; position: string; transition: string; showNotification: boolean; notificationContent: string; notificationOptions: any; subscription: Subscription; constructor(notificationService: NotificationService); ngOnInit(): void; ngOnDestroy(): void; closeNotification(): void; buttonClick: EventEmitter