type Check = { notificationShowed: (notificationId: string) => void; canShowNotification: (notificationId: string) => boolean; }; type Settings = { timeout: number; maxShowCount: number; }; export declare const getNotificationManager: ({ maxShowCount, timeout }: Settings) => Check; export {};