import { OnInit, OnDestroy } from '@angular/core'; import { SimulationService } from '@rengular/simulation'; import { NetworkContextService } from '@rengular/network-context'; export declare class OarsPocketComponent implements OnInit, OnDestroy { simulation: SimulationService; private knowledgeNetwork; prevScene?: string; nextScene?: string; historyScene?: string; prefsScene?: string; horizontal: boolean; private sceneFlag; i18n: { back: string; history: string; skip: string; auto: string; save: string; quickSave: string; quickLoad: string; prefs: string; }; constructor(simulation: SimulationService, knowledgeNetwork: NetworkContextService); autoContext: { active: boolean; timeOutId: number; }; ngOnInit(): void; ngOnDestroy(): void; /** * TODO: whether move to simulation framework? * @param sceneIri sceneIRI */ forwardScene(sceneIri: string): void; toggleAutoAcitve(): void; private tryStartAuto; }