import { NotificationTag } from '@solyd/types'; interface ExtendedNotificationOptions extends NotificationOptions { tag: NotificationTag; } declare class LocalNotification { private static instance; private serviceWorkerRegistration; private constructor(); static getInstance(): LocalNotification; useServiceWorker(registration: ServiceWorkerRegistration): void; createNotification: (title: string, options?: ExtendedNotificationOptions) => Notification | Promise; } export declare const localNotification: LocalNotification; export {};