import { CatDialogService } from '@catrx/ui/dialog'; import { CatDynamicComponent } from '@catrx/ui/dynamic-component'; import * as i0 from "@angular/core"; export type CatAlertType = 'success' | 'warning' | 'error' | 'info'; export interface CatAlertConfig { type: CatAlertType; message: string; icon?: CatDynamicComponent; } export declare class CatAlertService { private dialogService; constructor(dialogService: CatDialogService); show(config: CatAlertConfig): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }