export interface PlatformNotifications { showNotification(title: string, message: string, type: 'info' | 'success' | 'warning' | 'error'): void; requestPermission(): Promise; scheduleNotification(title: string, message: string, delay: number): void; } //# sourceMappingURL=platform-notifications.d.ts.map