import { BehaviorSubject } from 'rxjs';
import { Notification } from '../notification';
export declare class Notifier {
    trigger: BehaviorSubject<Notification>;
    constructor(notification: Notification);
    readonly notice: Notification;
    readonly isActive: boolean;
    readonly type: string;
    readonly duration: number | null;
    activate(): void;
    deactivate(status?: any): void;
}
