import { EnvironmentService } from './environment.service'; export abstract class NotificationsService { init: (environmentService: EnvironmentService) => Promise; updateConnection: () => Promise; reconnectFromActivity: () => Promise; disconnectFromInactivity: () => Promise; }