import { BootstrapAlert } from './bootstrap-alert';
import 'rxjs/add/operator/toPromise';
import { BehaviorSubject } from 'rxjs/Rx';
export declare class BootstrapAlertService {
    _bootstrapAlert: BehaviorSubject<BootstrapAlert>;
    constructor();
    alert(alert: BootstrapAlert): void;
}
