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