import { OnInit } from '@angular/core'; export declare type JdAlertType = 'success' | 'warn' | 'info' | 'error'; export declare class AlertComponent implements OnInit { jdAlertType: JdAlertType; jdShowIcon: boolean; jdTitle: string; jdDesc: boolean | string; constructor(); ngOnInit(): void; }