import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
import { Alert } from "./alert";
import { MultiAlertService } from "./providers/multi-alert-service";
export declare class AlertsPager implements OnInit, OnDestroy {
    multiAlertService: MultiAlertService;
    private multiAlertServiceChanges;
    /**
     * Input/Output to support two way binding on current alert instance
     */
    currentAlert: Alert;
    currentAlertChange: EventEmitter<Alert>;
    /**
     * Input/Output to support two way binding on current alert index
     */
    currentAlertIndex: number;
    currentAlertIndexChange: EventEmitter<number>;
    constructor(multiAlertService: MultiAlertService);
    ngOnInit(): void;
    pageUp(): void;
    pageDown(): void;
    ngOnDestroy(): void;
}
