export type NotificationType = "INFO" | "WARN" | "ERROR" | "FATAL" | "ARIA" | "OTHER"; interface FluidTopicsNotificationService { notify(type: NotificationType, message: string): void; info(message: string): void; warn(message: string): void; error(message: string): void; aria(message: string): void; } declare global { interface Window { FluidTopicsNotificationService: FluidTopicsNotificationService; } } export declare class FtWebappNotificationService { static notify(type: NotificationType, message: string): void; static info(message: string): void; static warn(message: string): void; static error(message: string): void; static aria(message: string): void; } export {};