import { OnInit } from '@angular/core'; import { NotificacaoService } from './notificacao.service'; import { Notificacao } from './notificacao'; export declare class NotificacaoComponent implements OnInit { private notificacaoService; notificacao: Notificacao; visivel: Boolean; constructor(notificacaoService: NotificacaoService); ngOnInit(): void; tipoAlerta(): string; fechar(): void; }