declare class AlertService { create({ title, subTitle, message, button, backdropDismiss }: { title: any; subTitle: any; message: any; button: any; backdropDismiss: any; }): { present: () => void; }; present(alertEl: any): void; } export declare const alertService: AlertService; export {};