import { BootstrapAlertInterface } from './bootstrap-alert';
import { BootstrapAlertService } from './bootstrap-alert.service';
export declare class BootstrapAlertComponent {
    private bootstrapAlertService;
    alertPosition: string;
    bootstrapAlerts: Array<BootstrapAlertInterface>;
    constructor(bootstrapAlertService: BootstrapAlertService);
    readonly DEFAULT_TIMEOUT: number;
    readonly FADE_TIMEOUT: number;
    show(bootstrapAlert: BootstrapAlertInterface): void;
    fade(bootstrapAlert: any): void;
    destroy(uuid: string): void;
    findIndex(array: any, attr: any, value: any): number;
}
