import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { TYPE } from '../../models/type.enum'; export declare class AlertsInfoComponent implements OnChanges { message: any; timeHide: number; active: boolean; type: TYPE; onActionClick: EventEmitter<{}>; classType: any; timeRe: any; reloadTimer(): void; ngOnChanges(changes: SimpleChanges): void; }