import { IAppNotification } from '../types/appNotification.types'; declare class NotificationHelper { success(config: IAppNotification): void; error(config: IAppNotification): void; warning(config: IAppNotification): void; info(config: IAppNotification): void; show(config: IAppNotification): void; hide(uid: string | number): void; removeAll(): void; } export declare const notificationHelper: NotificationHelper; export {};