/** * * Classe de Alertas. */ export declare class Alert { /** * * Tipo do alerta. */ type: AlertType; /** * * Título do alerta. */ title: string; /** * * Mensagem do Alerta. */ message: string; constructor( /** * * Tipo do alerta. */ type: AlertType, /** * * Título do alerta. */ title: string, /** * * Mensagem do Alerta. */ message: string); } /** * * Enum dos tipos de alerta. */ export declare enum AlertType { /** * * Alerta de Sucesso. */ Success = 0, /** * * Alerta de Erro. */ Error = 1, /** * * Alerta de informação. */ Info = 2, /** * * Alerta de aviso. */ Warning = 3 }