import { ApplicationRef, ComponentRef, OnInit } from '@angular/core'; import { NgbitFlashConfig } from './ngbit-flash-config.interface'; interface NgbitFlashInit { xy: string; centered: boolean; top?: string; bottom?: string; left?: string; right?: string; } export declare class NgbitFlashComponent implements OnInit { private appref; message: string; type: string; config: NgbitFlashConfig; dismiss: any; $self: ComponentRef; init: NgbitFlashInit; constructor(appref: ApplicationRef); ngOnInit(): void; remove(): void; } export {};