export declare class Alert { type: AlertType; message: string; } export declare enum AlertType { Success = 0, Error = 1, Info = 2, Warning = 3 }