import { OnInit, OnDestroy } from '@angular/core'; import { NgxConnectionStatusService } from './services/ngx-connection-status.service'; import { Subscription } from 'rxjs'; export declare class NgxConnectionStatusComponent implements OnInit, OnDestroy { private cs; isOnline: boolean; fresh: boolean; subscription: Subscription; constructor(cs: NgxConnectionStatusService); ngOnInit(): void; ngOnDestroy(): void; }