import { OnInit, OnChanges, EventEmitter, ElementRef, SimpleChanges } from '@angular/core'; import { NotifyData } from './notifiy.options'; export declare class NotifyComponent implements OnInit, OnChanges { toast: NotifyData; close: EventEmitter<{}>; notifyDiv: ElementRef; _state: boolean; animateCls: string; outCls: string; inCls: {}; state: boolean; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; getAnimateCls(cls?: any): void; closeToast(event: any): void; getPurType(): string; }