import { AfterContentInit, EventEmitter, OnDestroy, TemplateRef } from "@angular/core"; import { GrowlerKind } from "@spscommerce/ds-shared"; import { SpsGrowlerService } from "../../services/sps-growler.service"; export declare class SpsGrowlerComponent implements AfterContentInit, OnDestroy { private _growlerService; static readonly displayName = "sps-growler"; static readonly props: { title: string; kind: string; imgSrc: string; close: { event: boolean; type: string; }; }; title: string; kind: GrowlerKind; imgSrc: string; close: EventEmitter; content: TemplateRef; constructor(_growlerService: SpsGrowlerService); ngAfterContentInit(): void; ngOnDestroy(): void; onClose(): void; }