import { OnDestroy } from "@angular/core";
import { MessageService } from "../service/message.service";
import { Error } from "../data/error";
export declare class BitNotificationFrontComponent implements OnDestroy {
    error: string;
    masInfo: string;
    private subscriptionErrors;
    constructor(messageService: MessageService);
    showError(error: Error): void;
    cleanError(): void;
    ngOnDestroy(): void;
}
