interface IAlertComponent { message: string; description: string; type: string; closable: boolean; showIcon: boolean; } export { IAlertComponent };