import { OnInit, AfterViewInit, ElementRef } from '@angular/core'; import { Json } from '../json/Json'; import { ActivatedRoute } from '@angular/router'; import { HttpService } from '../../services/Http/Http'; export declare class ViewModel implements OnInit, AfterViewInit { protected elementRef: ElementRef; protected route: ActivatedRoute; dom: any; http: HttpService; routeLoadedData: Json; constructor(elementRef: ElementRef, route: ActivatedRoute); ngOnInit(): void; onBeforeInit(): void; onInit(): void; ngAfterViewInit(): void; onRouteData(data: Json): void; afterViewInit(): void; initialize(): void; setup(): void; }