import { TemplateRef } from '@angular/core'; import { Observable } from 'rxjs'; export interface AlertConfig { content: string | TemplateRef; title?: string | TemplateRef; btnText?: string; } export declare class AlertController { alertConfig: Observable; private alertAction; private alertActionSource; private alertConfigSource; constructor(); show(params: string | AlertConfig): Promise; publishAction(): void; }